Skip to content
Snippets Groups Projects
Commit cf88f08e authored by Richard Hartmann's avatar Richard Hartmann
Browse files

Fix commit 96f74d26de89fa1e390e26d015208163f689629e

Quote $1; change

	check_directory=$1

to

	check_directory="$1"
parent 809b0acc
Branches
Tags
No related merge requests found
...@@ -359,7 +359,7 @@ if echo $VCSH_REPO_NAME | grep -q '/'; then ...@@ -359,7 +359,7 @@ if echo $VCSH_REPO_NAME | grep -q '/'; then
fi fi
check_dir() { check_dir() {
check_directory=$1 check_directory="$1"
if [ ! -d "$check_directory" ]; then if [ ! -d "$check_directory" ]; then
if [ -e "$check_directory" ]; then if [ -e "$check_directory" ]; then
fatal "'$check_directory' exists but is not a directory" 13 fatal "'$check_directory' exists but is not a directory" 13
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment