mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-01 19:07:52 +00:00
* feat: create addjustconfig.sh to include custom commands at buildtime * fix: 60-custom.just.readme.md to 61-custom.just.readme.md * fix: Rename 60-custom.just to 61-custom.just * feat: add just config script to enabled scripts * fix: rename to 70-secureblue.just * fix: Rename 61-custom.just.readme.md to 70-secureblue.just.readme.md * fix: rename to 70-secureblue.just
10 lines
338 B
Bash
10 lines
338 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
|
|
|
|
# add our just config
|
|
echo 'import "/usr/share/ublue-os/just/70-secureblue.just"' >> /usr/share/ublue-os/justfile
|