diff options
author | M.Gergo | 2018-03-28 20:48:05 +0200 |
---|---|---|
committer | M.Gergo | 2018-03-28 20:48:05 +0200 |
commit | cf30dceb15fa65f503c2a3f31f95b08ce1c65d35 (patch) | |
tree | 3d51eabdf4c9bc7a3daca03d265c052fb0601ac2 /mayor-installer/install.d/50linker.sh | |
parent | 20a9412f1f5bc7b7e40ffb24e262cdf20420983c (diff) | |
download | mayor-cf30dceb15fa65f503c2a3f31f95b08ce1c65d35.tar.gz mayor-cf30dceb15fa65f503c2a3f31f95b08ce1c65d35.zip |
installer javítás 1
Diffstat (limited to 'mayor-installer/install.d/50linker.sh')
-rwxr-xr-x | mayor-installer/install.d/50linker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mayor-installer/install.d/50linker.sh b/mayor-installer/install.d/50linker.sh index 3801354c..73887902 100755 --- a/mayor-installer/install.d/50linker.sh +++ b/mayor-installer/install.d/50linker.sh @@ -34,7 +34,7 @@ POLICIES="parent public" for POLICY in $POLICIES; do eval "LIST=\$${POLICY}Link" for f in $LIST; do - DIR=`echo $f | cut -d / -f 1-2` + DIR=$(echo $f | cut -d / -f 1-2) if [ ! -d $MAYORDIR/www/policy/$POLICY/$DIR ]; then echo " Könyvtár: $MAYORDIR/www/policy/$POLICY/$DIR" mkdir -p $MAYORDIR/www/policy/$POLICY/$DIR |