forked from LaconicNetwork/kompose
13 lines
229 B
Bash
Executable File
13 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Get rid of existing binary
|
|
rm -f kompose
|
|
|
|
# Build binary
|
|
go build \
|
|
-tags experimental \
|
|
-o kompose \
|
|
-ldflags="-w -X github.com/skippbox/kompose/version.GITCOMMIT=${GITCOMMIT}" \
|
|
./cli/main
|