Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request #700 from RobertSzkutak/issue-568
Browse files Browse the repository at this point in the history
Issue 568
  • Loading branch information
dmcassel authored Nov 27, 2016
2 parents 84fe686 + 7eb855f commit b191587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ then
then
read -r -n 1 -p "Running ml new from within a Roxy project is not recommended. Continue? [y/N] " response
printf "\n"
if [ $response != "Y" ] && [ $response != "y" ]
if [[ $response != "Y" ]] && [[ $response != "y" ]]
then
exit 1
fi
fi
fi

app_name="$1"
shift

Expand Down

0 comments on commit b191587

Please sign in to comment.