mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
git-refresh: fix for Solaris
* tool/git-refresh: expand for each words. [ruby-dev:50102] [Bug #13522] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c4378e0fb8
commit
e97e093a3d
1 changed files with 2 additions and 2 deletions
|
@ -34,10 +34,10 @@ if [ -d "$dir" ]; then
|
|||
echo updating `expr "/$dir/" : '.*/\([^/][^/]*\)/'` ...
|
||||
[ $quiet ] || set -x
|
||||
$CHDIR "$dir"
|
||||
${branch+git fetch "$@"}
|
||||
${branch+git} ${branch+fetch} ${branch+"$@"}
|
||||
exec git ${branch+checkout} "${branch-pull}" "$@"
|
||||
else
|
||||
echo retrieving `expr "/$dir/" : '.*/\([^/][^/]*\)/'` ...
|
||||
[ $quiet ] || set -x
|
||||
exec git clone ${branch+--branch "$branch"} "$url" "$dir" "$@"
|
||||
exec git clone ${branch+--branch} ${branch+"$branch"} "$url" "$dir" "$@"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue