mirror of
https://github.com/harvester/vm-import-controller.git
synced 2025-06-03 01:44:51 +00:00
7 lines
198 B
Bash
Executable File
7 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
mkdir -p bin
|
|
GOARCH=amd64 CGO_ENABLED=0 go build -o bin/vm-import-controller-amd64 .
|
|
GOARCH=arm64 CGO_ENABLED=0 go build -o bin/vm-import-controller-arm64 . |