9 строки
231 B
Bash
9 строки
231 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 )"
|
||
|
|
||
|
python3 $DIR/tools/build.py "$@"
|