mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-01 19:07:52 +00:00
11 lines
276 B
Bash
11 lines
276 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
brewimport='import "/usr/share/ublue-os/just/50-brew.just"'
|
|
|
|
if ! grep -qF "$brewimport" /usr/share/ublue-os/justfile; then
|
|
echo "$brewimport" >> /usr/share/ublue-os/justfile
|
|
fi
|