mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-06 21:37:51 +00:00
* this does not work yet * comments & documentation will be added once the rewrite is complete
11 lines
355 B
Bash
11 lines
355 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell this script to exit if there are any errors.
|
|
# You should have this in every custom script, to ensure that your completed
|
|
# builds actually ran successfully without any errors!
|
|
set -oue pipefail
|
|
|
|
# Your code goes here.
|
|
echo 'This is an example shell script'
|
|
echo 'Scripts here will run during build if specified in recipe.yml'
|