mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 07:20:40 +01:00
feat(installer): add confirmation before overwriting existing .zshrc (#13086)
This commit is contained in:
@@ -341,6 +341,23 @@ setup_zshrc() {
|
|||||||
echo "${FMT_YELLOW}Found ${zdot}/.zshrc.${FMT_RESET} ${FMT_GREEN}Keeping...${FMT_RESET}"
|
echo "${FMT_YELLOW}Found ${zdot}/.zshrc.${FMT_RESET} ${FMT_GREEN}Keeping...${FMT_RESET}"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Ask user for confirmation before backing up and overwriting
|
||||||
|
echo "${FMT_YELLOW}Found ${zdot}/.zshrc."
|
||||||
|
echo "The existing .zshrc will be backed up to .zshrc.pre-oh-my-zsh if overwritten."
|
||||||
|
echo "Make sure your .zshrc contains the following minimal configuration if you choose not to overwrite it:${FMT_RESET}"
|
||||||
|
echo "----------------------------------------"
|
||||||
|
cat "$ZSH/templates/minimal.zshrc"
|
||||||
|
echo "----------------------------------------"
|
||||||
|
printf '%sDo you want to overwrite it with the Oh My Zsh template? [Y/n]%s ' \
|
||||||
|
"$FMT_YELLOW" "$FMT_RESET"
|
||||||
|
read -r opt
|
||||||
|
case $opt in
|
||||||
|
[Yy]*|"") ;;
|
||||||
|
[Nn]*) echo "Overwrite skipped. Existing .zshrc will be kept."; return ;;
|
||||||
|
*) echo "Invalid choice. Overwrite skipped. Existing .zshrc will be kept."; return ;;
|
||||||
|
esac
|
||||||
|
|
||||||
if [ -e "$OLD_ZSHRC" ]; then
|
if [ -e "$OLD_ZSHRC" ]; then
|
||||||
OLD_OLD_ZSHRC="${OLD_ZSHRC}-$(date +%Y-%m-%d_%H-%M-%S)"
|
OLD_OLD_ZSHRC="${OLD_ZSHRC}-$(date +%Y-%m-%d_%H-%M-%S)"
|
||||||
if [ -e "$OLD_OLD_ZSHRC" ]; then
|
if [ -e "$OLD_OLD_ZSHRC" ]; then
|
||||||
@@ -353,7 +370,7 @@ setup_zshrc() {
|
|||||||
echo "${FMT_YELLOW}Found old .zshrc.pre-oh-my-zsh." \
|
echo "${FMT_YELLOW}Found old .zshrc.pre-oh-my-zsh." \
|
||||||
"${FMT_GREEN}Backing up to ${OLD_OLD_ZSHRC}${FMT_RESET}"
|
"${FMT_GREEN}Backing up to ${OLD_OLD_ZSHRC}${FMT_RESET}"
|
||||||
fi
|
fi
|
||||||
echo "${FMT_YELLOW}Found ${zdot}/.zshrc.${FMT_RESET} ${FMT_GREEN}Backing up to ${OLD_ZSHRC}${FMT_RESET}"
|
echo "${FMT_GREEN}Backing up to ${OLD_ZSHRC}${FMT_RESET}"
|
||||||
mv "$zdot/.zshrc" "$OLD_ZSHRC"
|
mv "$zdot/.zshrc" "$OLD_ZSHRC"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user