Stability / update-linuxmac.sh
roshikhan3021's picture
Upload 19 files
0ce60a9 verified
raw
history blame contribute delete
578 Bytes
#!/usr/bin/env bash
# Ensure correct local path.
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd $SCRIPT_DIR
# Add dotnet non-admin-install to path
export PATH="$SCRIPT_DIR/.dotnet:~/.dotnet:$PATH"
# The actual update
git pull
# Make a backup of the current live_release to be safe
if [ -d ./src/bin/live_release ]; then
rm -rf ./src/bin/live_release_backup
mv ./src/bin/live_release ./src/bin/live_release_backup
fi
# Now build the new copy
dotnet build src/StableSwarmUI.csproj --configuration Release -o ./src/bin/live_release