mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-28 10:19:33 +00:00
cannot find package "github.com/hashicorp/hcl/hcl/printer" in any of:
/usr/local/go/src/github.com/hashicorp/hcl/hcl/printer (from $GOROOT)
/go/src/github.com/hashicorp/hcl/hcl/printer (from $GOPATH)
15 lines
207 B
Bash
Executable File
15 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
[ -d bin ] || mkdir bin
|
|
|
|
[ -e bin/labca ] || set -ev
|
|
if [ ! -e bin/labca ]; then
|
|
go mod download
|
|
|
|
go build -o bin/labca main.go acme.go certificate.go dashboard.go
|
|
fi
|
|
|
|
bin/labca
|