aboutsummaryrefslogtreecommitdiff
path: root/m
diff options
context:
space:
mode:
authoreschnett <eschnett@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2013-04-16 02:30:16 +0000
committereschnett <eschnett@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2013-04-16 02:30:16 +0000
commit49dfb515bab1356cab5afdd7373600dce4d823cf (patch)
tree1ba674415b289b11bf8f3805bb7c6e88ee29dbb4 /m
parentf9fe9736f1da6d9b5c52978d2df84a2cc1988901 (diff)
Use grep -q instead of grep --silent
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/WeylScal4/trunk@132 4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843
Diffstat (limited to 'm')
-rw-r--r--m/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/m/Makefile b/m/Makefile
index 931a7b4..1d59cae 100644
--- a/m/Makefile
+++ b/m/Makefile
@@ -8,7 +8,7 @@ all: WeylScal4.out
WeylScal4.out: WeylScal4.m
rm -rf WeylScal4
./runmath.sh $^
- grep --silent 'Thorn ./WeylScal4 created successfully' WeylScal4.out
+ grep -q 'Thorn ./WeylScal4 created successfully' WeylScal4.out && \
for file in $$(ls WeylScal4); do \
./copy-if-changed.sh WeylScal4/$$file ../$$file; \
done