Commit be5dabf8 authored by Vincent Driessen's avatar Vincent Driessen

Merge pull request #141 from moranjk/develop

fixed malformed if statement

Thanks, James.
parents 7c7dc35c 0c320620
...@@ -50,7 +50,7 @@ case "$1" in ...@@ -50,7 +50,7 @@ case "$1" in
;; ;;
*) *)
echo "Installing git-flow to $INSTALL_PREFIX" echo "Installing git-flow to $INSTALL_PREFIX"
if [[ -d "$REPO_NAME" && -d "$REPO_NAME/.git" ]] ; then if [ -d "$REPO_NAME" -a -d "$REPO_NAME/.git" ] ; then
echo "Using existing repo: $REPO_NAME" echo "Using existing repo: $REPO_NAME"
else else
echo "Cloning repo from GitHub to $REPO_NAME" echo "Cloning repo from GitHub to $REPO_NAME"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment