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
-
To unsubscribe from this list: send the line
"unsubscribe git" in
the body of a message to majordomo vger.kernel.org
More majordomo info at http://vge
r.kernel.org/majordomo-info.html
|