mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
e05f427f3d
Summary: Remove the `-debug=true` flags from the script used to build the Aplhict client SWF. Test Plan: **Before** ``` > du -h webroot/rsrc/swf/aphlict.swf 20K ``` **After** ``` > du -h webroot/rsrc/swf/aphlict.swf 16K ``` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9333
20 lines
461 B
Bash
Executable file
20 lines
461 B
Bash
Executable file
#!/bin/sh
|
|
|
|
BASEDIR=`dirname $0`
|
|
ROOT=`cd $BASEDIR/../../../ && pwd`;
|
|
|
|
if [ -z "$MXMLC" ]; then
|
|
echo "ERROR: Define environmental variable MXMLC to point to 'mxmlc' binary.";
|
|
exit 1;
|
|
fi;
|
|
|
|
set -e
|
|
|
|
$MXMLC \
|
|
-output=$ROOT/webroot/rsrc/swf/aphlict.swf \
|
|
-default-background-color=0x444444 \
|
|
-default-size=500,500 \
|
|
-warnings=true \
|
|
-source-path=$ROOT/externals/vegas/src \
|
|
-static-link-runtime-shared-libraries=true \
|
|
$BASEDIR/src/AphlictClient.as
|