Fix conditional

This commit is contained in:
emisargent 2023-02-10 22:13:09 +00:00
parent 0bbf95c645
commit 3907da8bfe

View file

@ -3,7 +3,7 @@ set -e
# Add user's fork as a remote
GIT_USER=$(git config user.name)
if [ ! git remote | grep -q "fork" ]; then
if ! git remote | grep -q "fork"; then
git remote add fork https://github.com/${GIT_USER}/flask
fi