Skip to content

Commit

Permalink
release archives: quiet down when Git is not found
Browse files Browse the repository at this point in the history
I've put `2>/dev/null` into a bit incorrect place.
  • Loading branch information
motiejus committed May 4, 2024
1 parent 65c47f5 commit 4e88fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ define RELEASE_RULES
inotify-info-$(TAG).tar.gz:
git archive --prefix=inotify-info-$(TAG)/ v$(TAG) | gzip -n > $$@
endef
$(foreach TAG,$(shell git tag | sed -n '/^v/ s/^v//p' 2>/dev/null),$(eval $(RELEASE_RULES)))
$(foreach TAG,$(shell git tag 2>/dev/null | sed -n '/^v/ s/^v//p'),$(eval $(RELEASE_RULES)))

0 comments on commit 4e88fe3

Please sign in to comment.