Skip to content

Commit

Permalink
Merge pull request #331 from marshallford/patch-1
Browse files Browse the repository at this point in the history
Adds check for gcloud executable in PATH
  • Loading branch information
morgante authored Dec 13, 2019
2 parents 575b0fb + 47e5b90 commit 61f326f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/core_project_factory/scripts/preconditions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ if command -v python3 1>/dev/null; then
else
echo "Unable to check project-factory preconditions: python3 executable not in PATH" 1>&2
fi

if ! command -v gcloud 1>/dev/null; then
echo "Unable to check project-factory preconditions: gcloud executable not in PATH" 1>&2
fi

0 comments on commit 61f326f

Please sign in to comment.