1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-09-28 22:40:45 +00:00

readme: add note about exit status

This commit is contained in:
Oliver Giles 2017-11-18 10:59:31 +02:00
parent 298f72f81b
commit 792c69a0bb

View File

@ -94,7 +94,9 @@ cd hello-2.10
make make
``` ```
Don't forget to mark it executable: Laminar uses your script's exit code to determine whether to mark the run as successful or failed. If your script is written in bash, the [`-e` option](http://tldp.org/LDP/abs/html/options.html) is helpful for this. See also [Exit and Exit Status](http://tldp.org/LDP/abs/html/exit-status.html).
Don't forget to mark the script executable:
```bash ```bash
chmod +x /var/lib/laminar/cfg/hello.run chmod +x /var/lib/laminar/cfg/hello.run