wok-6.x diff gvim/receipt @ rev 18995
Add: PeaZip 6.0.0 Env:GTK2 - (peazip.org).
author | Leonardo Laporte <hackdorte@sapo.pt> |
---|---|
date | Sat Mar 19 01:26:01 2016 -0300 (2016-03-19) |
parents | 3494cfd4c595 |
children | 02c70d036ea0 |
line diff
1.1 --- a/gvim/receipt Sun Nov 08 14:57:26 2015 +0100 1.2 +++ b/gvim/receipt Sat Mar 19 01:26:01 2016 -0300 1.3 @@ -60,10 +60,7 @@ 1.4 1.5 post_install() 1.6 { 1.7 - local root 1.8 - root=$1 1.9 - 1.10 - cmd=$(readlink $root/bin/vi) 1.11 + cmd=$(readlink "$1/bin/vi") 1.12 if [ ! "$cmd" == '/usr/bin/vim' ]; then 1.13 echo "" 1.14 echo "**** Actual VI link : $cmd" 1.15 @@ -72,7 +69,7 @@ 1.16 if [ "$answer" == 'y' ]; then 1.17 echo "" 1.18 echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..." 1.19 - rm $root/bin/vi && ln -sf $root/usr/bin/vim $root/bin/vi 1.20 + rm "$1/bin/vi" && ln -sf /usr/bin/vim "$1/bin/vi" 1.21 status 1.22 else 1.23 echo "" 1.24 @@ -84,5 +81,5 @@ 1.25 post_remove() 1.26 { 1.27 # restore previous symlink 1.28 - ln -sf busybox $1/bin/vi 1.29 + ln -sf busybox "$1/bin/vi" 1.30 }