git-refresh: fix abort by cd failure

* tool/git-refresh: try `cd -P` in a subshell, because Solaris10
  sh dies if it fails, not only the command.
  [ruby-dev:50074] [Bug #13433]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58344 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-04-14 00:45:48 +00:00
Родитель 197ebcb083
Коммит 03421631bd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
set -e set -e
if cd -P . 2>/dev/null; then if (cd -P .) 2>/dev/null; then
CHDIR='cd -P' CHDIR='cd -P'
else else
CHDIR='cd' CHDIR='cd'