Skip to content

Commit

Permalink
chore: dont validate yarn lock file on greenkeeper branches (atlassia…
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound authored and alexreardon committed Sep 28, 2018
1 parent 1f9313b commit 8b485a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- run:
name: Validate Yarn Lock File
command: |
if [ -n "$(git status -s)" ]; then
if [[ "$(git status -s)" != "" ]] && [[ "$CIRCLE_BRANCH" != greenkeeper/* ]]; then
echo "Your yarn.lock was modified during install, please check in any changes to the yarn.lock file"
exit 1
fi
Expand Down

0 comments on commit 8b485a1

Please sign in to comment.