1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-05 08:10:15 +02:00

Remove trailing /. from diagnostic.

This commit is contained in:
Jim Meyering
2003-01-04 09:03:45 +00:00
parent 874f367c0a
commit c146a76b5d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ fail=0
# Both of these should fail.
rm -rf a b > out 2>&1 && fail=1
cat <<EOF > exp
rm: cannot chdir from \`a/.' to \`1': Permission denied
rm: cannot chdir from \`a' to \`1': Permission denied
rm: cannot chdir from \`.' to \`b': Permission denied
EOF
+1 -1
View File
@@ -31,7 +31,7 @@ fail=0
# This should fail.
rm -rf a > out 2>&1 && fail=1
cat <<EOF > exp
rm: cannot open directory \`a/.': Permission denied
rm: cannot open directory \`a': Permission denied
EOF
cmp out exp || fail=1