* [PATCH] cg-clean fails on files beginning with a dash
@ 2006-05-29 15:06 Dennis Stosberg
0 siblings, 0 replies; only message in thread
From: Dennis Stosberg @ 2006-05-29 15:06 UTC (permalink / raw)
To: Petr Baudis; +Cc: git
Reproducible with:
$ git init-db
$ echo "some text" >-file
$ cg clean
Removing -file
rm: invalid option -- l
Try `rm --help' for more information.
Signed-off-by: Dennis Stosberg <dennis@stosberg.net>
---
cg-clean | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cg-clean b/cg-clean
index 5f438eb..fe611ac 100755
--- a/cg-clean
+++ b/cg-clean
@@ -67,13 +67,13 @@ while read -r file; do
if [ "$cleandirhard" ]; then
chmod -R 700 "$file"
fi
- $rm -rf "$file"
+ $rm -rf -- "$file"
if [ -e "$file" -o -L "$file" ]; then
echo "Cannot remove $file"
fi
elif [ -e "$file" -o -L "$file" ]; then
[ "$quiet" ] || echo "Removing $file"
- "$rm" -f "$file"
+ "$rm" -f -- "$file"
# rm would complain itself on failure
else
echo "File $file has disappeared!"
--
1.3.3+git20060528-dest1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-05-29 15:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-29 15:06 [PATCH] cg-clean fails on files beginning with a dash Dennis Stosberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).