feat: publish HoloLake model-native living system source
This commit is contained in:
parent
6ad10edde1
commit
c395dd3a99
2467 changed files with 615073 additions and 0 deletions
18
product-source/hololake-platform/scripts/build-internal-release.sh
Executable file
18
product-source/hololake-platform/scripts/build-internal-release.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||
platform="${1:-}"
|
||||
|
||||
case "$platform" in
|
||||
macos)
|
||||
exec "$repo_root/scripts/build-macos-internal.sh"
|
||||
;;
|
||||
windows)
|
||||
exec "$repo_root/scripts/build-windows-jd-cross.sh"
|
||||
;;
|
||||
*)
|
||||
echo "Usage: ./scripts/build-internal-release.sh <macos|windows>" >&2
|
||||
exit 2
|
||||
;;
|
||||
esac
|
||||
Loading…
Reference in a new issue