Support symlinks in Apps directory

This commit is contained in:
2022-07-06 13:52:17 +05:30
parent b9ee447dee
commit 39e3243d1f
+1 -1
View File
@@ -29,7 +29,7 @@ doInstall(){
updateBinLinks(){
cd $localBinDir;
for i in $(find "$appDir" -name 'binaries.lst'); do
for i in $(find -L "$appDir" -name 'binaries.lst'); do
for f in $(cat $i);do
if [ -e "./$(basename $f)" ]; then
echo "Removing already existing file $(basename $f)"