aboutsummaryrefslogtreecommitdiffstats
path: root/tool/release.sh
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-16 15:35:50 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-16 15:35:50 +0000
commit25b2a21b31f74b2f0ee06055e64a7e8195f21c98 (patch)
tree8dcd5f61bb04cb7a9428c7540b4428c6e98f07e2 /tool/release.sh
parent8119cbae1fec6c3dc90c8a6a85f69409b77bb6b2 (diff)
downloadruby-25b2a21b31f74b2f0ee06055e64a7e8195f21c98.tar.gz
* tool/release.sh: need -f option because this overwrite the previous links if they exist.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/release.sh')
-rwxr-xr-xtool/release.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/release.sh b/tool/release.sh
index 0cbb6f3aca..e7daa90db9 100755
--- a/tool/release.sh
+++ b/tool/release.sh
@@ -30,9 +30,9 @@ do
for ext in $EXTS
do
cp $r$ext $dir/$r$ext
- ln -s $xy/$r$ext ${RUBYDIR}/$r$ext
+ ln -sf $xy/$r$ext ${RUBYDIR}/$r$ext
if [ x$preview = x ];then
- ln -s $xy/$r$ext ${RUBYDIR}/ruby-$xy-stable$ext
+ ln -sf $xy/$r$ext ${RUBYDIR}/ruby-$xy-stable$ext
fi
done
done