Skip to content

Commit

Permalink
fix: add hashtag to shebang in example script (#4136)
Browse files Browse the repository at this point in the history
  • Loading branch information
vLia authored Jul 5, 2023
1 parent 385c888 commit ad77997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/articles/creating-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ When such a test is created you will see additional annotations for its cron job
If you need to provide additional configuration for your executor environment, you can submit a prerun/postrun script to be executed before the test is started and after test is completed. For example, we have a simple shell script stored in `pre_script.sh` and `post_script.sh` files:

```sh
!/bin/sh
#!/bin/sh
echo "Storing ssl certificate in file from env secret env"
echo "$SSL_CERT" > /data/ssl.crt
Expand All @@ -439,7 +439,7 @@ echo "$SSL_CERT" > /data/ssl.crt
and

```sh
!/bin/sh
#!/bin/sh
echo "Sleeping for 30 seconds"
sleep 30
Expand Down

0 comments on commit ad77997

Please sign in to comment.