1
0
Fork 0
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:
nobu 2017-04-30 10:53:42 +00:00
parent c4378e0fb8
commit e97e093a3d

View file

@ -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