diff options
| author | Paul Buetow <paul@buetow.org> | 2025-01-11 00:45:02 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-01-11 00:45:02 +0200 |
| commit | 94d9b5f48147ee9cc6ca57177e00f8679224603d (patch) | |
| tree | c3ae81b6c31c5deb0582fca475f156718a6dd380 /Taskfile.yml | |
| parent | 97b93252dfcb0242bb1cd5e3e5793a8ae73b17a9 (diff) | |
add gosc binary
Diffstat (limited to 'Taskfile.yml')
| -rw-r--r-- | Taskfile.yml | 5 |
1 files changed, 3 insertions, 2 deletions
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 - - |
