diff --git a/updateSecrets.sh b/updateSecrets.sh index d5fa38cc9..9033d9d8d 100755 --- a/updateSecrets.sh +++ b/updateSecrets.sh @@ -1,7 +1,12 @@ #!/bin/bash -find . -name '*.gyb' | \ - while read file; do \ - echo "running ${file%.gyb}"; \ - gyb --line-directive '' -o "${file%.gyb}" "$file"; \ +if [ ! $(type -P "gyb") ]; then + echo "gyb not installed. Install via: brew install nshipster/formulae/gyb" + exit 1 +fi + +find . -name '*.gyb' | + while read file; do + echo "running ${file%.gyb}"; + gyb --line-directive '' -o "${file%.gyb}" "$file"; done \ No newline at end of file