Skip to content

Instantly share code, notes, and snippets.

@Czechh
Created December 3, 2018 14:38
Embed
What would you like to do?
#!/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