moe-os/config/scripts/example.sh

11 lines
355 B
Bash
Raw Normal View History

2024-06-19 18:56:48 +02:00
#!/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'