From 19422bd7d3f4a976f2a8f4af3c4abaf29c45ea09 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 15 May 2008 09:51:26 +0100 Subject: [PATCH] make function variables local Signed-off-by: martin f. krafft --- lib/git-fake-bare | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/git-fake-bare b/lib/git-fake-bare index 341b369..13b2f10 100644 --- a/lib/git-fake-bare +++ b/lib/git-fake-bare @@ -16,9 +16,9 @@ lib = # git doesn't have an easy way to check out such a repo, so # do it by hand git_fake_bare_checkout() { - url="$1" - repo="$2" - worktree="$3" + local url; url="$1" + local repo; repo="$2" + local worktree; worktree="$3" git clone --no-checkout "$url" "$repo" cd "$repo" mkdir -p "$worktree" -- 2.39.5