chore: outline rewrite without code changes

* this does not work yet
* comments & documentation will be added once the rewrite is complete
This commit is contained in:
ER
2023-08-09 19:59:04 +03:00
parent 116e53a9e6
commit 9950409702
12 changed files with 42 additions and 91 deletions

10
config/scripts/example.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/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'