List Info

Thread: cg-clean fails on files beginning with a dash




cg-clean fails on files beginning with a dash
user name
2006-05-29 15:06:52
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 <dennisstosberg.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 majordomovger.kernel.org
More majordomo info at  http://vge
r.kernel.org/majordomo-info.html
[1]

about | contact  Other archives ( Real Estate discussion Medical topics )