Git development
 help / color / mirror / Atom feed
* [PATCH] cg-update quotes too much
@ 2005-12-19 12:19 Tero Roponen
  0 siblings, 0 replies; only message in thread
From: Tero Roponen @ 2005-12-19 12:19 UTC (permalink / raw)
  To: git

Hi,

It seems that cogito commit e5ca051c1d3900f7fbc1592d018ab3aab6a9573a
broke cg-update, as expected ("Such a large patch is bound to introduce
some (probably mostly trivial) bugs").

Quoting $force and $squash gives cg-fetch and cg-merge an empty argument
if they are not set. If they are not quoted they will be omitted if they
are empty, which is the right thing.

Signed-off-by: Tero Roponen <teanropo@cc.jyu.fi>

---

diff --git a/cg-update b/cg-update
index d586631..1d6e0a0 100755
--- a/cg-update
+++ b/cg-update
@@ -55,10 +55,10 @@ name="${ARGS[0]}"
 [ -s "$_git/refs/heads/$name" ] && export _cg_orig_head="$(cat "$_git/refs/heads/$name")"

 if [ -s "$_git/branches/$name" ]; then
-	cg-fetch "$force" "$name" || exit 1
+	cg-fetch $force "$name" || exit 1
 else
 	echo "Updating from a local branch."
 fi
 echo
 echo "Applying changes..."
-cg-merge "$squash" "$name"
+cg-merge $squash "$name"

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2005-12-19 12:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-19 12:19 [PATCH] cg-update quotes too much Tero Roponen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox