Skip to content

Instantly share code, notes, and snippets.

@Czechh
Created December 3, 2018 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Czechh/de9f02b2f1587693970fe30643824d9f to your computer and use it in GitHub Desktop.
Save Czechh/de9f02b2f1587693970fe30643824d9f to your computer and use it in GitHub Desktop.
#!/bin/bash
BRANCH_NAME="master"
for dir in */ ; do
filename="Dockerfile"
dockerfile="$dir$filename"
if [ -f "$dockerfile" ]
then
npm run qa $dir $BRANCH_NAME
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment