chore: Migrate from config/ to files/ & use new files module recipe format (#36)

This commit is contained in:
fiftydinar
2024-07-21 21:21:52 +02:00
committed by GitHub
parent a6881a3a2b
commit 670f83cce1
3 changed files with 5 additions and 3 deletions

10
files/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'