mirror of
https://github.com/rancher/os.git
synced 2025-06-08 06:25:31 +00:00
13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
|
||
|
export OUTPUT=bin/host_ros
|
||
|
|
||
|
if [[ -e bin/ros && "$HOST_ARCH" = "$ARCH" ]]; then
|
||
|
echo Creating $OUTPUT
|
||
|
cp bin/ros $OUTPUT
|
||
|
else
|
||
|
GOARCH=${HOST_ARCH} TOOLCHAIN= ./scripts/build-target
|
||
|
fi
|