Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ testbin/
dev/

apiserver.local.config/

# dev-kit common.mk cache/sentinel files
common.mk
.common.mk-version
.common.mk-checked
.common.mk-download
default.etcd/
.DS_Store

Expand Down
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
DEV_KIT_VERSION := v1.0.7
-include common.mk
common.mk:
curl --fail -sSL https://raw.githubusercontent.com/opendefensecloud/dev-kit/$(DEV_KIT_VERSION)/common.mk -o common.mk.download && \
mv common.mk.download $@
@[ -f .common.mk-download ] || \
curl --fail -sSL https://raw.githubusercontent.com/opendefensecloud/dev-kit/$(DEV_KIT_VERSION)/common.mk \
-o .common.mk-download
mv .common.mk-download $@
printf '%s' '$(DEV_KIT_VERSION)' > .common.mk-version
touch .common.mk-checked

.PHONY: fmt
fmt: $(GOLANGCI_LINT) ## Format code
Expand Down
Loading