From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QBNqN-0002yD-2z for garchives@archives.gentoo.org; Sun, 17 Apr 2011 09:00:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 918431C003; Sun, 17 Apr 2011 09:00:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6236A1C003 for ; Sun, 17 Apr 2011 09:00:27 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 874341B404A for ; Sun, 17 Apr 2011 09:00:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id AC58E80065 for ; Sun, 17 Apr 2011 09:00:25 +0000 (UTC) From: "Tomas Chvatal" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tomas Chvatal" Message-ID: Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/git-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: scarabeus X-VCS-Committer-Name: Tomas Chvatal X-VCS-Revision: b68254443af69a07bc917d7cc4bcaf88f9ef61dc Date: Sun, 17 Apr 2011 09:00:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 3b99aca254316cbb4c6729082f26dfbe commit: b68254443af69a07bc917d7cc4bcaf88f9ef61dc Author: Tomas Chvatal gentoo org> AuthorDate: Sun Apr 17 09:00:18 2011 +0000 Commit: Tomas Chvatal gentoo org> CommitDate: Sun Apr 17 09:00:18 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3Db6825444 [git-2] Be space safe (at least i hope). --- eclass/git-2.eclass | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/eclass/git-2.eclass b/eclass/git-2.eclass index 6ddc295..0a5d490 100644 --- a/eclass/git-2.eclass +++ b/eclass/git-2.eclass @@ -484,7 +484,7 @@ git-2_migrate_repository() { # set various options to work with both options if [[ ${target} =3D=3D bare ]]; then EGIT_OPTIONS+=3D" --bare" - MOVE_COMMAND=3D"git clone -l -s -n ${EGIT_DIR}" + MOVE_COMMAND=3D"git clone -l -s -n ${EGIT_DIR// /\\ }" EGIT_UPDATE_CMD=3D"git fetch -f -u origin ${EGIT_BRANCH}:${EGIT_BRANCH= }" UPSTREAM_BRANCH=3D"${EGIT_BRANCH}" else