mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-21 13:00:56 +01:00
802463cb94
Summary: These settings don't seem to make any difference and are somewhat confusing. Test Plan: Sent myself test notifications via `/notification/status`. Things seemed to work. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9337
18 lines
396 B
Bash
Executable file
18 lines
396 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 \
|
|
-warnings=true \
|
|
-source-path=$ROOT/externals/vegas/src \
|
|
-static-link-runtime-shared-libraries=true \
|
|
$BASEDIR/src/AphlictClient.as
|