DORMANTno replies

[PATCH]: cg-clean confused by symlinks to directories

From: Pavel Roskin <hidden>
Date: 2016-06-15 22:42:07
Subsystem: the rest · Maintainer: Linus Torvalds

cg-clean confused by symlinks to directories

It turns out that "git-ls-files --others" shows symlinks to directories.
That shouldn't trigger internal error in cg-clean.  Such symlinks should
be treated like files and removed even without the "-d" option.

Signed-off-by: Pavel Roskin <redacted>
diff --git a/cg-clean b/cg-clean
--- a/cg-clean
+++ b/cg-clean
@@ -111,7 +111,7 @@ clean_files()
 	cg-status "$xopt" -w | sed -n 's/^? //p' |
 	for file in $(cat); do
 		path="${_git_relpath}$file"
-		if [ -d "$path" ]; then
+		if [ -d "$path" -a ! -L "$path" ]; then
 			# Sanity check, shouldn't happen
 			echo "FATAL: cg-status reports directories (internal error)" >&2
 			exit 1

-- 
Regards,
Pavel Roskin
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help