2018-11-20 03:48:22 +03:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
# Licensed under the MIT License.
|
|
|
|
|
|
|
|
# Get directory this script is in
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2020-09-29 23:53:11 +03:00
|
|
|
OS=$(uname -s)
|
|
|
|
|
|
|
|
if [ "$OS" = "Darwin" ]; then
|
|
|
|
DIR_OS="MacOS"
|
|
|
|
else
|
|
|
|
DIR_OS="Linux"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "$*" == *"--ios"* ]]; then
|
|
|
|
DIR_OS="iOS"
|
|
|
|
elif [[ "$*" == *"--android"* ]]; then
|
|
|
|
DIR_OS="Android"
|
|
|
|
fi
|
2018-11-20 03:48:22 +03:00
|
|
|
|
2020-09-29 23:53:11 +03:00
|
|
|
python3 $DIR/tools/ci_build/build.py --build_dir $DIR/build/$DIR_OS "$@"
|