15 lines
362 B
Bash
Executable File
15 lines
362 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd /workspaces/go-hass-agent && go mod tidy
|
|
|
|
# Install goreleaser
|
|
go install github.com/goreleaser/goreleaser@latest
|
|
|
|
# Install go build packages
|
|
go install golang.org/x/tools/cmd/stringer@latest
|
|
go install github.com/fyne-io/fyne-cross@latest
|
|
go install golang.org/x/text/cmd/gotext@latest
|
|
go install github.com/matryer/moq@latest
|