mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-03-29 22:20:21 +00:00
fix(user-setup): Fix justfile creation
Currently, this only gets written if the file exists. Create it when the file doesn't exist instead
This commit is contained in:
parent
a55954db31
commit
24ceab8e44
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user