diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-05-13 12:03:39 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-05-13 12:03:39 -0300 |
commit | 103e344b5db0176d3a650703d7fd6b23c4852738 (patch) | |
tree | 0ae7f90053c3d56a69a7633d3f3c5e2190340527 | |
parent | e068c9d22eb6442dc3d41872ff4bc6d153fbf8b8 (diff) | |
download | scripts-103e344b5db0176d3a650703d7fd6b23c4852738.tar.gz scripts-103e344b5db0176d3a650703d7fd6b23c4852738.tar.bz2 |
Relative symlinks on tor-browser-dl
-rwxr-xr-x | tor-browser-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tor-browser-dl b/tor-browser-dl index d73bf81..5609841 100755 --- a/tor-browser-dl +++ b/tor-browser-dl @@ -63,7 +63,7 @@ gpg --verify $DL/$SIGN $DL/$FILE || exit 1 # Move and symlink mv $TEMP/tor-browser_$LANG $APP_BASE/$ARCH-$VERSION rm -rf $APP_BASE/$ARCH && \ -ln -sf $APP_BASE/$ARCH-$VERSION $APP_BASE/$ARCH +( cd $APP_BASE && ln -sf $ARCH-$VERSION $ARCH ) # Cleanup rm -rf $TEMP |