Merge pull request #143 from thockin/build-rel-tweaks

Fix bad perms on make
This commit is contained in:
Kubernetes Prow Robot 2019-02-01 10:12:27 -08:00 committed by GitHub
commit c1edeed768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ $(OUTBIN): .go/$(OUTBIN).stamp
./build/build.sh \ ./build/build.sh \
" "
@if ! cmp -s .go/$(OUTBIN) $(OUTBIN); then \ @if ! cmp -s .go/$(OUTBIN) $(OUTBIN); then \
cat .go/$(OUTBIN) > $(OUTBIN); \ mv .go/$(OUTBIN) $(OUTBIN); \
date >$@; \ date >$@; \
fi fi