You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
system, check what is the best place to add to fpath
83
85
(mostly in your .zshrc before invoking plugin manager)
84
86
87
+
--noupdaterc By default arttime installer would append a line
88
+
at the end of user's ~/.zshrc or ~/.bashrc
89
+
if the effective installation path is not on $PATH
90
+
Providing this switch disables that, which is
91
+
especially valuable for package managers
92
+
85
93
-h --help Print this help string for arttime installer, and exit
86
94
EOF
87
95
echo"$VAR"
@@ -294,7 +302,9 @@ else
294
302
else
295
303
profile=''
296
304
fi
297
-
if [[ !-z$profile ]];then
305
+
if [[ $noupdaterc_arg!="" ]];then
306
+
echo"Installation complete! Type 'arttime' and press Enter to start arttime.\nIf arttime command is not found, try one of following:\n 1) source your *rc file or restart terminal,\n 2) add install directory to PATH in your *rc file and try 1) again."
307
+
elif [[ $profile!="" ]];then
298
308
echo"\n# Following line was automatically added by arttime installer">>$HOME/$profile
0 commit comments