Merge pull request #337 from ublue-os/fix-justfile

fix(user-setup): Fix justfile creation
This commit is contained in:
Kyle Gospodnetich 2023-09-20 10:10:32 -07:00 committed by GitHub
commit db67ec4d37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
source /etc/default/bazzite
if [[ -f "${HOME}/.justfile" ]]; then
if [[ ! -f "${HOME}/.justfile" ]]; then
echo "!include /usr/share/ublue-os/just/custom.just" >> "${HOME}/.justfile"
fi