Skip to content

Commit

Permalink
fix(user-setup): Fix justfile creation
Browse files Browse the repository at this point in the history
Currently, this only gets written if the file exists. Create it when the file doesn't exist instead
  • Loading branch information
EyeCantCU authored Sep 20, 2023
1 parent a55954d commit 24ceab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system_files/desktop/shared/usr/bin/bazzite-user-setup
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 24ceab8

Please sign in to comment.