removed depricated references to make in error messages

This commit is contained in:
nathan 2016-06-02 11:50:07 -04:00
parent 8b0e61d845
commit 36a8bba6d9
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
if [ ! -h ./config/apexupdate.conf ]; then if [ ! -h ./config/apexupdate.conf ]; then
echo "Missing symbolic link: $PWD/config/apexupdate.conf" echo "Missing symbolic link: $PWD/config/apexupdate.conf"
echo "Please use the command 'npm run switch-conf-file' to create the symbolic link ./config/apexupdate.conf to your config file" echo "Please use the command 'npm run switch-conf-file' to create the symbolic link ./config/apexupdate.conf to your config file"
echo "If you don't have a config file set up you can create one using 'make new-config-file'" echo "If you don't have a config file set up you can create one using 'npm run new-config-file'"
exit 1 exit 1
fi fi

View File

@ -14,7 +14,7 @@ read username
conf_file="$username.conf" conf_file="$username.conf"
if [ ! -e $conf_file ]; then if [ ! -e $conf_file ]; then
echo "Sorry, the file ./scripts/$conf_file does not exist. Either create the file using make new-config-file or choose a pre-existing config file."; exit 1 echo "Sorry, the file ./scripts/$conf_file does not exist. Either create the file using npm run new-conf-file or choose a pre-existing config file."; exit 1
fi fi
if [ -e apexupdate.conf ]; then if [ -e apexupdate.conf ]; then