Commit 10a99633 authored by Yoni Fogel's avatar Yoni Fogel

Update make.mysql.debug.env.bash to include --local for cloning and added a comment.

parent bfa1555e
......@@ -26,10 +26,12 @@ function github_clone() {
git fetch --all -p -t
popd
fi
git clone $local_cache_dir/$repo.git
git clone --local $local_cache_dir/$repo.git
if [ $? != 0 ] ; then exit 1; fi
pushd $repo
git remote set-url origin git@github.com:Tokutek/$repo $local_cache_dir/$repo.git
#Update remote to point to github
git remote set-url origin git@github.com:Tokutek/$repo $local_cache_dir/$repo.git
popd
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment