This commit is contained in:
lifestorm
2024-08-04 23:54:45 +03:00
parent 0e770b2b49
commit df294d03aa
7526 changed files with 4011945 additions and 15 deletions

View File

@@ -0,0 +1,24 @@
#!/bin/bash
id=0
idFile=./id.txt
if [ -e "$idFile" ]; then
id=$(cat ./id.txt)
else
echo "ID file doesn't exist."
exit 1
fi
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
cd $HOME/.steam/steam/steamapps/common/GarrysMod/bin
LD_LIBRARY_PATH=./ ./gmad_linux create -folder $DIR -out ./addon.gma -warninvalid
LD_LIBRARY_PATH=./ ./gmpublish_linux update update -id $id -addon ./addon.gma
rm ./parts.gma