Skip to content

Commit 19c201a

Browse files
committed
Remove bashism
1 parent 71df251 commit 19c201a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/cpp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ PROGRAMS = \
2727
all: $(PROGRAMS)
2828

2929
test-examples: $(PROGRAMS)
30-
set -e && for i in $(PROGRAMS); do diff -u $${i}.output <(./$${i}); done
30+
set -e && for i in $(PROGRAMS); do ./$${i} &> output; diff -u $${i}.output output; done; rm -f output
3131

3232
advanced-convolution-deprecated: advanced-convolution-deprecated.cpp
3333
$(CXX) $(CXXFLAGS) $< $(LHAPDF_DEPS) $(PINEAPPL_DEPS) -o $@

0 commit comments

Comments
 (0)