Updates
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
# ------------------------------------------------------
|
||||
# Confirm Start
|
||||
# ------------------------------------------------------
|
||||
|
||||
SCRIPT=$(realpath "$0")
|
||||
SCRIPTPATH=$(dirname "$SCRIPT")
|
||||
if [ $SCRIPTPATH = "/home/$USER/dotfiles" ]; then
|
||||
echo ""
|
||||
echo "IMPORTANT: You're running the installation script from the installation target directory."
|
||||
echo "Please move the installation folder dotfiles e.g. to ~/Downloads/ and start the script again."
|
||||
echo "Proceeding is not recommended!"
|
||||
if [ ! $mode == "dev" ]; then
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
if [ ! -d ~/dotfiles ];then
|
||||
if gum confirm "DO YOU WANT TO START THE INSTALLATION OF THE ML4W DOTFILES NOW?" ;then
|
||||
echo "Installation started."
|
||||
elif [ $? -eq 130 ]; then
|
||||
echo ":: Installation canceled."
|
||||
exit 130
|
||||
else
|
||||
echo ":: Installation canceled."
|
||||
exit;
|
||||
fi
|
||||
else
|
||||
if gum confirm "DO YOU WANT TO START THE UPDATE OF YOUR ML4W DOTFILES NOW?" ;then
|
||||
echo ":: Update started."
|
||||
elif [ $? -eq 130 ]; then
|
||||
echo ":: Update canceled."
|
||||
exit 130
|
||||
else
|
||||
echo ":: Update canceled."
|
||||
exit;
|
||||
fi
|
||||
fi
|
||||
echo ""
|
||||
Reference in New Issue
Block a user