about summary refs log tree commit diff
path: root/Functions/Newuser/zsh-newuser-install
diff options
context:
space:
mode:
Diffstat (limited to 'Functions/Newuser/zsh-newuser-install')
-rw-r--r--Functions/Newuser/zsh-newuser-install7
1 files changed, 4 insertions, 3 deletions
diff --git a/Functions/Newuser/zsh-newuser-install b/Functions/Newuser/zsh-newuser-install
index 97b33cfc5..3c97d80cd 100644
--- a/Functions/Newuser/zsh-newuser-install
+++ b/Functions/Newuser/zsh-newuser-install
@@ -954,10 +954,11 @@ You can:
   print -r "
 (1)  Continue to the main menu.
 "
-  if [[ -f /etc/zsh/recommended.zshrc ]]; then
+  if [[ -f /etc/zsh/zshrc.recommended ]]; then
     print -r "
 (2)  Populate your $zdmsg/.zshrc with the configuration recommended
-     by the system administrator."
+     by the system administrator and exit (you will need to edit
+     the file by hand, if so desired)."
   fi
 
   read -k key$longprompt
@@ -977,7 +978,7 @@ You can:
     ;;
 
     (2)
-    cp /etc/zsh/recommended.zshrc $zd/.zshrc
+    cp /etc/zsh/zshrc.recommended $zd/.zshrc
     source $zd/.zshrc
     return 0
     ;;