mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-04-28 03:10:32 +00:00
16 lines
243 B
Bash
Executable File
16 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname $0)/.."
|
|
./scripts/download
|
|
|
|
source $(dirname $0)/version
|
|
|
|
[ "$(uname)" != "Darwin" ] && LINKFLAGS="-extldflags -static -s"
|
|
|
|
CGO_ENABLED=0 go build \
|
|
-ldflags \
|
|
"$LINKFLAGS" \
|
|
-o bin/kube-explorer
|
|
|