Commit 43418e43 authored by maruel@chromium.org's avatar maruel@chromium.org

Evan lied to me. The stub script needed to use "$@" and not "$*".

Otherwise, all the parameters are coagulated into a single one.

TEST=none
BUG=none
Review URL: http://codereview.chromium.org/119308

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@17968 0039d316-1c4b-4281-b951-d872f2087c98
parent 5c2720e4
......@@ -9,4 +9,4 @@ if [ ! -f "$base_dir/git-cl-repo/git-cl" ]; then
git clone git://neugierig.org/git-cl.git $base_dir/git-cl-repo
fi
$base_dir/git-cl-repo/git-cl "$*"
$base_dir/git-cl-repo/git-cl "$@"
......@@ -9,4 +9,4 @@ if [ ! -f "$base_dir/git-try-repo/git-try" ]; then
git clone git://neugierig.org/git-try.git $base_dir/git-try-repo
fi
$base_dir/git-try-repo/git-try "$*"
$base_dir/git-try-repo/git-try "$@"
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