Skip to content

Commit

Permalink
Merge pull request #652 from intel-go/gregory/quickfix
Browse files Browse the repository at this point in the history
Added missing semicolon
  • Loading branch information
gshimansky authored Sep 19, 2019
2 parents b78cb92 + 6a17849 commit 4d10b8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mk/leaf.mk
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ deploy: .check-deploy-env images
$(eval TMPNAME=tmp-$(IMAGENAME).tar)
docker save $(WORKIMAGENAME) > $(TMPNAME)
for host in `echo $(NFF_GO_HOSTS) | tr ',' ' '`; do \
echo Uploading $(WORKIMAGENAME) to $$host \
echo Uploading $(WORKIMAGENAME) to $$host; \
if ! docker -H tcp://$$host load < $(TMPNAME); then break; fi; \
done
rm $(TMPNAME)
Expand Down

0 comments on commit 4d10b8e

Please sign in to comment.