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