We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ed5cac + 4a271c7 commit ccaee61Copy full SHA for ccaee61
container-object-storage-interface-controller/.gitignore
@@ -0,0 +1,5 @@
1
+*.tmp
2
+.DS_Store
3
+.build
4
+*.swp
5
+release-tools
container-object-storage-interface-controller/Makefile
@@ -13,6 +13,14 @@
13
# limitations under the License.
14
15
#CMDS=cosi-controller-manager
16
-all: build
+all: reltools build
17
+.PHONY: reltools
18
+reltools: release-tools/build.make
19
+release-tools/build.make:
20
+ $(eval CURDIR := $(shell pwd))
21
+ $(eval TMP := $(shell mktemp -d))
22
+ $(shell cd ${TMP} && git clone [email protected]:kubernetes-sigs/container-object-storage-interface-spec.git)
23
+ $(shell cp -r ${TMP}/container-object-storage-interface-spec/release-tools ${CURDIR}/)
24
+ $(shell rm -rf ${TMP})
25
26
include release-tools/build.make
0 commit comments