13 lines
356 B
Bash
Executable File
13 lines
356 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) Wojciech Figat. All rights reserved.
|
|
|
|
set -e
|
|
|
|
echo Building and packaging Flax Editor...
|
|
|
|
# Change the path to the script root
|
|
cd "`dirname "$0"`"
|
|
|
|
# Run Flax.Build (also pass the arguments)
|
|
bash ./Development/Scripts/Mac/CallBuildTool.sh --deploy --deployEditor --verbose --log --logFile="Cache/Intermediate/PackageLog.txt" "$@"
|