We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05bb818 commit e3a1b1dCopy full SHA for e3a1b1d
1 file changed
Makefile
@@ -1,5 +1,7 @@
1
.PHONY: all build clean
2
3
+all: clean build
4
+
5
build:
6
GOOS=linux GOARCH=386 go build -o bin/appcloud-cf-cli-plugin_linux32
7
GOOS=linux GOARCH=amd64 go build -o bin/appcloud-cf-cli-plugin_linux64
@@ -11,7 +13,9 @@ build:
11
13
clean:
12
14
@rm bin/appcloud-cf-cli-plugin_* -f
15
-all: clean build
-
16
sha:
17
@sha1sum bin/appcloud-cf-cli-plugin_*
18
19
+release:
20
+ @echo release plugin - see https://github.com/swisscom/appcloud-cf-cli-plugin/releases
21
+ @echo open plugin repo PR - see https://github.com/cloudfoundry/cli-plugin-repo/pull/519
0 commit comments