mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 20:55:44 +00:00
9 lines
317 B
Bash
Executable File
9 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
/bin/echo "building windows dll"
|
|
bazel build @net_eagle0_unity_godice//windows:dll_zip
|
|
ZIP_LOCATION=$(bazel cquery --output=files @net_eagle0_unity_godice//windows:dll_zip 2>/dev/null)
|
|
/usr/bin/unzip -o $ZIP_LOCATION -d src/main/csharp/net/eagle0/clients/unity/eagle0/Assets/Plugins/
|