summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/cp/backup-dir.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cp/backup-dir.sh b/tests/cp/backup-dir.sh
index 5c17498cf..c05d9561a 100755
--- a/tests/cp/backup-dir.sh
+++ b/tests/cp/backup-dir.sh
@@ -31,8 +31,8 @@ test -d y/x~ && fail=1
# Bug 62607.
# This would fail to backup using rename, and thus fail to replace the file
-mkdir -p {src,dst}/foo || framework_failure_
-touch {src,dst}/foo/bar || framework_failure_
+mkdir -p src/foo dst/foo || framework_failure_
+touch src/foo/bar dst/foo/bar || framework_failure_
cp --recursive --backup src/* dst || fail=1
Exit $fail