1
0
Fork 0

Improve function messages

This commit is contained in:
Roan Horning 2023-03-03 21:47:29 -05:00
parent 094287837c
commit e7e752f1e8
Signed by untrusted user: rho_n
GPG Key ID: 234AEF20B72D5769
1 changed files with 6 additions and 3 deletions

View File

@ -58,7 +58,7 @@ function make_working_dir {
exit 1
fi
echo $WORK_DIR
}
}
#--- FUNCTION ----------------------------------------------------------------
# NAME: clean_working_dir
@ -72,7 +72,8 @@ function clean_working_dir {
rm -rf $1
echo "Deleted temp working directory $1"
else
echo "Not a temporary directory: $1"
echo "Did not delete directory: $1"
echo "Not a temporary directory."
fi
}
@ -100,15 +101,17 @@ function download_hpr_sql {
echo "Removing temporary hpr.sql"
rm $1/hpr.sql
else
echo "No temporary hpr.sql found"
echo "No temporary hpr.sql to remove"
fi
if [ "$CURL" != "" ];
then
curl $HPR_URL --output $1/hpr.sql
echo "Downloaded hpr.sql via curl"
elif [ "$WGET" != "" ];
then
wget --directory-prefix=$1 $HPR_URL
echo "Downloaded hpr.sql via wget"
else
echo "Could not download file. Please install either curl or wget."
return 1