mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-04-10 06:44:37 +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
|
#!/usr/bin/env bash
|
||||||
source /etc/default/bazzite
|
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"
|
echo "!include /usr/share/ublue-os/just/custom.just" >> "${HOME}/.justfile"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user