Merged in feature/s3integration (pull request #47)
Set Up S3 integration * cfginterfaceandfirsts3funcs * addlocalstack * generallypassesfullsuite * addedmultipleattemptedpings * cleanup * stabiliseplusskip
This commit is contained in:
+16
-2
@@ -4,7 +4,21 @@ all: build
|
||||
init:
|
||||
git submodule update --init --recursive
|
||||
|
||||
.PHONY: build
|
||||
build:
|
||||
.PHONY: update-submodule
|
||||
update-submodule: init
|
||||
# Fetch the latest tags
|
||||
cd swagger-ui && git fetch --tags
|
||||
# Get the latest tag
|
||||
$(eval LATEST_TAG := $(shell cd swagger-ui && git describe --tags `git rev-list --tags --max-count=1`))
|
||||
@echo "Latest tag for swagger-ui: $(LATEST_TAG)"
|
||||
# Checkout the latest tag
|
||||
cd swagger-ui && git checkout $(LATEST_TAG)
|
||||
@echo "Updated submodule swagger-ui to latest tag: ${LATEST_TAG}"
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf dist/*
|
||||
|
||||
.PHONY: build
|
||||
build: clean
|
||||
cp -r swagger-ui/dist/* dist/
|
||||
Reference in New Issue
Block a user