chore: Remove now unneeded FORCE=1 variables from Fleek installer

This commit is contained in:
Kyle Gospodnetich 2023-09-25 10:21:10 -07:00
parent 407c819676
commit ff0d9eac17
2 changed files with 4 additions and 4 deletions

View File

@ -72,8 +72,8 @@ install-fleek:
if [[ -d "/nix" ]]; then
mkdir -p $HOME/.config/nix
echo "experimental-features = nix-command flakes" >> $HOME/.config/nix/nix.conf
env FORCE=1 nix run "https://getfleek.dev/latest.tar.gz" -- init
env FORCE=1 nix run "https://getfleek.dev/latest.tar.gz" -- apply
nix run "https://getfleek.dev/latest.tar.gz" -- init
nix run "https://getfleek.dev/latest.tar.gz" -- apply
else
echo "Install nix with just install-nix before running just install-fleek."
fi

View File

@ -47,8 +47,8 @@ install-fleek:
if [[ -d "/nix" ]]; then
mkdir -p $HOME/.config/nix
echo "experimental-features = nix-command flakes" >> $HOME/.config/nix/nix.conf
env FORCE=1 nix run "https://getfleek.dev/latest.tar.gz" -- init
env FORCE=1 nix run "https://getfleek.dev/latest.tar.gz" -- apply
nix run "https://getfleek.dev/latest.tar.gz" -- init
nix run "https://getfleek.dev/latest.tar.gz" -- apply
else
echo "Install nix with just install-nix before running just install-fleek."
fi