Merge pull request #2780 from jarl-dk/master

Makefile fix
This commit is contained in:
Chris Bednarski 2015-09-26 21:59:21 -07:00
commit 024132a698
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ updatedeps:
| grep -v github.com/mitchellh/packer \
| grep -v '/internal/' \
| sort -u \
| xargs go get -f -u -v -d ; if [ $$? -eq 0 ]; then \
| xargs go get -f -u -v -d ; if [ $$? -ne 0 ]; then \
echo "ERROR: go get failed. Your git branch may have changed; you were on $(GITBRANCH) ($(GITSHA))."; \
fi
@if [ "$(GITBRANCH)" != "" ]; then git checkout -q $(GITBRANCH); else git checkout -q $(GITSHA); fi