mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-29 23:06:41 +00:00
23 lines
473 B
Bash
23 lines
473 B
Bash
|
|
#!/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 )"
|
||
|
|
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
|
||
|
|
|
||
|
|
#requires python3.6 or higher
|
||
|
|
python3 $DIR/scripts/build_web.py "$@"
|