summaryrefslogtreecommitdiff
path: root/t/distname.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/distname.sh')
-rwxr-xr-xt/distname.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/distname.sh b/t/distname.sh
index 0ef3cdb4c..19806cef0 100755
--- a/t/distname.sh
+++ b/t/distname.sh
@@ -18,7 +18,7 @@
# From Rainer Orth.
required=cc
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AC_CONFIG_SRCDIR([a.c])
@@ -40,8 +40,8 @@ $AUTOMAKE --include-deps --copy --add-missing
$MAKE dist
gzip -d $me-1.0.tar.gz
-tar tf $me-1.0.tar > stdout || { cat stdout; Exit 1; }
+tar tf $me-1.0.tar > stdout || { cat stdout; exit 1; }
cat stdout
-$FGREP ./$me-1.0/a.c stdout && Exit 1
+$FGREP ./$me-1.0/a.c stdout && exit 1
: