All of lore.kernel.org
 help / color / mirror / Atom feed
* [MinGW port] Unable to repack on Clearcase dynamic views
@ 2007-05-30 14:42 Nguyen Thai Ngoc Duy
  2007-05-30 15:11 ` Paolo Teti
  2007-05-30 15:28 ` Johannes Sixt
  0 siblings, 2 replies; 14+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2007-05-30 14:42 UTC (permalink / raw)
  To: Git Mailing List

Hi,

On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
work if "a" is read-only. Because git-repack.sh removes all write
permission before moving packs, it fails on clearcase dynamic views.

My approach is rather ugly. Does anyone have a better solution?

diff --git a/git-repack.sh b/git-repack.sh
index acb78ba..76a9525 100755
--- a/git-repack.sh
+++ b/git-repack.sh
@@ -86,10 +86,22 @@ else
 	mv -f "$PACKTMP-$name.idx"  "$PACKDIR/pack-$name.idx" &&
 	test -f "$PACKDIR/pack-$name.pack" &&
 	test -f "$PACKDIR/pack-$name.idx" || {
-		echo >&2 "Couldn't replace the existing pack with updated one."
-		echo >&2 "The original set of packs have been saved as"
-		echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
-		exit 1
+		# Clearcase dynamic views do not allow to move file without write permission
+		# Try the second time with write allowed
+		chmod u+w "$PACKTMP-$name.pack"
+		chmod u+w "$PACKTMP-$name.idx"
+
+		mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
+		mv -f "$PACKTMP-$name.idx"  "$PACKDIR/pack-$name.idx" &&
+		test -f "$PACKDIR/pack-$name.pack" &&
+		test -f "$PACKDIR/pack-$name.idx" || {
+			echo >&2 "Couldn't replace the existing pack with updated one."
+			echo >&2 "The original set of packs have been saved as"
+			echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
+			exit 1
+		}
+		chmod a-w "$PACKDIR/pack-$name.pack"
+		chmod a-w "$PACKDIR/pack-$name.idx"
 	}
 	rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
 fi


-- 
Duy

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2007-06-01 18:11 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-30 14:42 [MinGW port] Unable to repack on Clearcase dynamic views Nguyen Thai Ngoc Duy
2007-05-30 15:11 ` Paolo Teti
2007-05-30 15:33   ` Nguyen Thai Ngoc Duy
2007-05-30 16:30     ` Paolo Teti
2007-05-30 18:28     ` Robin Rosenberg
2007-05-30 18:44       ` Johannes Schindelin
2007-05-30 19:08       ` Nguyen Thai Ngoc Duy
2007-05-30 19:28         ` Robin Rosenberg
2007-05-30 19:48           ` Nguyen Thai Ngoc Duy
2007-05-31  9:46       ` Paolo Teti
2007-05-31 18:51         ` Robin Rosenberg
2007-06-01 18:11       ` Jan Hudec
2007-05-30 15:28 ` Johannes Sixt
     [not found]   ` <fcaeb9bf0705300840w221c46c1y742388fc9e61c2fa@mail.gmail.com>
2007-05-30 15:43     ` Fwd: " Nguyen Thai Ngoc Duy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.