package_uploader: fix typo

This commit is contained in:
Henrik Grimler 2019-03-16 15:15:13 +01:00
parent 42a9e77f9a
commit ed1cad9ce2
1 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ while getopts ":-:hdp:" opt; do
fi
if [ ! -d "$DEBFILES_DIR_PATH" ]; then
echo "[!] Directory '$DEBFILES_DIR_PATH' is not exist." >&2
echo "[!] Directory '$DEBFILES_DIR_PATH' does not exist." >&2
show_usage
exit 1
fi
@ -471,7 +471,7 @@ while getopts ":-:hdp:" opt; do
p)
DEBFILES_DIR_PATH="${OPTARG}"
if [ ! -d "$DEBFILES_DIR_PATH" ]; then
echo "[!] Directory '$DEBFILES_DIR_PATH' is not exist." >&2
echo "[!] Directory '$DEBFILES_DIR_PATH' does not exist." >&2
show_usage
exit 1
fi