We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e746c commit b46124eCopy full SHA for b46124e
.github/workflows/ci.yml
@@ -9,4 +9,4 @@ jobs:
9
with:
10
go-version: '^1.20'
11
- run: make test
12
- - run: make build
+
Makefile
@@ -1,5 +1,3 @@
1
-BINDIR ?= ./bin
2
-SCRIPTDIR := ./scripts
3
SHELL := /bin/bash
4
GOBIN := $(shell which go 2> /dev/null)
5
ifeq ($(GOBIN),)
@@ -10,15 +8,3 @@ endif
8
test:
$(GOBIN) test -v ./...
13
-.PHONY: build
14
-build:
15
- make -C tscli
16
-
17
-.PHONY: install
18
-install: build
19
- cp $(BINDIR)/tscli /usr/local/bin/
20
21
-.PHONY: clean
22
-clean:
23
- rm -rf $(BINDIR)
24
tscli/Makefile
tscli/README.md
tscli/main.go
tscli/main_test.go
0 commit comments