added clientdata symlink creation to build script

This commit is contained in:
theswgsource
2018-04-27 19:09:28 -07:00
parent f0a43ae33c
commit 3a85e4092a

View File

@@ -507,5 +507,18 @@ if [[ $response =~ ^(yes|y| ) ]]; then
cd $basedir
fi
fi
read -p "******************************************************************
This section will link your clientdata folder to sys.client in the server
***************************************************************************
******************************************************************
Do you want to create the symlink for the clientdata folder? (y/n) " response
response=${response,,}
if [[ $response =~ ^(yes|y| ) ]]; then
cd /root/swg-main/data/sku.0/sys.client
mkdir compiled
cd compiled
mkdir game
ln -s root/swg-main/clientdata /root/swg-main/data/sku.0/sys.client/compiled/game/
fi
echo -e "\033[1;33m";
echo "Congratulations build_linux script is complete!"