Run envvar-check in case SIMPLE_BACKUP_SUFFIX is set.
authorJim Meyering <jim@meyering.net>
Tue, 20 Jan 2004 09:14:21 +0000 (09:14 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 20 Jan 2004 09:14:21 +0000 (09:14 +0000)
tests/mv/backup-is-src
tests/mv/hard-4

index 7f1e623..db63e73 100755 (executable)
@@ -7,6 +7,7 @@ if test "$VERBOSE" = yes; then
 fi
 
 . $srcdir/setup
+. $srcdir/../envvar-check
 
 if test -z "$other_partition_tmpdir"; then
   exit 77
index a928fff..87bf710 100755 (executable)
@@ -6,6 +6,8 @@ if test "$VERBOSE" = yes; then
   mv --version
 fi
 
+. $srcdir/../envvar-check
+
 pwd=`pwd`
 t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
 trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0