From 94d9b5f48147ee9cc6ca57177e00f8679224603d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 11 Jan 2025 00:45:02 +0200 Subject: add gosc binary --- Taskfile.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Taskfile.yml') diff --git a/Taskfile.yml b/Taskfile.yml index 27e2323..22d21d7 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -7,6 +7,7 @@ tasks: deps: ["build"] cmds: - cp -v ./gos ~/go/bin/ + - cp -v ./gosc ~/go/bin/ run: deps: ["dev"] cmds: @@ -14,10 +15,12 @@ tasks: build: cmds: - go build -o gos cmd/gos/main.go + - go build -o gosc cmd/gosc/main.go dev: deps: ["test", "vet", "lint"] cmds: - go build -race -o gos cmd/gos/main.go + - go build -race -o gosc cmd/gosc/main.go test: cmds: - go clean -testcache @@ -36,5 +39,3 @@ tasks: cmds: - go install golang.org/x/tools/gopls@latest - go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest - - -- cgit v1.2.3