Skip to content

Commit

Permalink
fix(rules): Don't die in CI if asked to install but nothing is built
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Mar 26, 2021
1 parent b03671d commit 84d99e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/utilities.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install-dist: $$(or $$(call extantfiles,$$(DISTFILES)),fail)
set -o extendedglob
export VERSION_CONTROL=none
extants=($(addsuffix ($(hash)qN),$(DISTFILES)))
install -m644 -t "$(DISTDIR)" $${(u)extants}
xargs -r install -m644 -t "$(DISTDIR)" <<< $${(u)extants}

.PHONY: debug
debug:
Expand Down

0 comments on commit 84d99e6

Please sign in to comment.