Skip to content

Commit c5e843e

Browse files
committed
Remove a needless use of bash
sh can do this just as well, so don't require bash needlessly.
1 parent b76db48 commit c5e843e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build/Makefile-Moar.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ manifest:
7373

7474
release: manifest
7575
[ -n "$(VERSION)" ] || ( echo "\nTry 'make release VERSION=yyyy.mm'\n\n"; exit 1 )
76-
bash -c '[ "$$(cat VERSION)" == "$(VERSION)" ] || ( echo -e "\nVersion on command line and in VERSION file differ\n"; exit 1 )'
76+
sh -c '[ "$$(cat VERSION)" == "$(VERSION)" ] || ( echo -e "\nVersion on command line and in VERSION file differ\n"; exit 1 )'
7777
[ -d nqp-$(VERSION) ] || ln -s . nqp-$(VERSION)
7878
$(PERL) -ne 'print "nqp-$(VERSION)/$$_"' MANIFEST |\
7979
tar -zcv --owner=0 --group=0 --numeric-owner -T - -f nqp-$(VERSION).tar.gz

0 commit comments

Comments
 (0)