diff --git a/.devcontainer/post-create-command.sh b/.devcontainer/post-create-command.sh index 8c7c15c3..3fc43e81 100755 --- a/.devcontainer/post-create-command.sh +++ b/.devcontainer/post-create-command.sh @@ -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