Files @ 787f2aabbded
Branch filter:

Location: ATITD-Tools/Desert-Paint-Lab/publish.sh - annotation

Jason Maltzen
Update search for paint lab interface: check for 4 corners and left/right line of solid portion of the color area, fix papyrus texture check for new brighter papyrus texture.
#!/bin/sh

if [ $# -ne 2 ]; then
	echo "Usage: $0 <version> <build name>"
	exit 1
fi

VERSION=$1
BUILD_NAME=$2

mkdir -p publish
# Windows Release build
( cd ./bin/Release ; /usr/bin/zip -r ../../publish/DesertPaintLab_${BUILD_NAME}.zip . -x .DS_Store )

( cd ./mac ; ./build-mac-bundle.sh "${VERSION}" "${BUILD_NAME}" )