diff --git a/build_linux.sh b/build_linux.sh index 384685c..8e92d7c 100755 --- a/build_linux.sh +++ b/build_linux.sh @@ -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!"