Skip to content

Commit c1edeed

Browse files
authored
Merge pull request #143 from thockin/build-rel-tweaks
Fix bad perms on make
2 parents 32982a9 + 899ae45 commit c1edeed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ $(OUTBIN): .go/$(OUTBIN).stamp
135135
./build/build.sh \
136136
"
137137
@if ! cmp -s .go/$(OUTBIN) $(OUTBIN); then \
138-
cat .go/$(OUTBIN) > $(OUTBIN); \
138+
mv .go/$(OUTBIN) $(OUTBIN); \
139139
date >$@; \
140140
fi
141141

0 commit comments

Comments
 (0)