Browse Source

package_uploader: fix typo

emacs-27
Henrik Grimler 6 years ago
parent
commit
00d88cefb4
  1. 4
      scripts/package_uploader.sh

4
scripts/package_uploader.sh

@ -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

Loading…
Cancel
Save