[DO NOT UPDATE] Update wording
This commit is contained in:
parent
57ba15e37e
commit
26036fc28e
1 changed files with 5 additions and 5 deletions
10
bin/updater
10
bin/updater
|
@ -13,18 +13,18 @@ case "${STAGE}" in
|
||||||
echo ":: S1 | Unlinking legacy file paths"
|
echo ":: S1 | Unlinking legacy file paths"
|
||||||
./uninstall.sh --remove-legacy-paths
|
./uninstall.sh --remove-legacy-paths
|
||||||
|
|
||||||
echo ":: S1 | Unlinking files (safety measure)"
|
echo ":: S1 | Uninstalling & unlinking (safety measure)"
|
||||||
./uninstall.sh
|
./uninstall.sh
|
||||||
else
|
else
|
||||||
echo ":: S1 | Unlinking files"
|
echo ":: S1 | Uninstalling"
|
||||||
./uninstall.sh
|
./uninstall.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo ":: S1 | Linking files"
|
echo ":: S1 | Installing"
|
||||||
./install.sh
|
./install.sh
|
||||||
|
|
||||||
# Remove legacy updater version file
|
# Remove legacy updater version file
|
||||||
rm -rf "$HOME/.config/.jstm_dotfiles_updater"
|
[[ -f "${HOME}/.config/.jstm_dotfiles_updater" ]] && rm -rf "${HOME}/.config/.jstm_dotfiles_updater"
|
||||||
|
|
||||||
echo ":: S1 | Update complete."
|
echo ":: S1 | Update complete."
|
||||||
echo " Make sure to execute \"dotfiles-install-software\""
|
echo " Make sure to execute \"dotfiles-install-software\""
|
||||||
|
@ -46,7 +46,7 @@ case "${STAGE}" in
|
||||||
echo ":: S0 | Pulling updates"
|
echo ":: S0 | Pulling updates"
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
exec env STAGE=1 UPDATER_VERSION=${LOCAL_UPDATER_VERSION} "$HOME/.dotfiles/bin/updater"
|
exec env STAGE=1 UPDATER_VERSION=${LOCAL_UPDATER_VERSION} "${HOME}/.dotfiles/bin/updater"
|
||||||
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue