Skip to content

Commit

Permalink
Add make targets to clean up Sipi (#1957)
Browse files Browse the repository at this point in the history
  • Loading branch information
irinaschubert committed Dec 6, 2021
1 parent bae2199 commit 284fa1b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Expand Up @@ -354,6 +354,15 @@ clean: docs-clean clean-local-tmp clean-docker ## clean build artifacts
@rm -rf .env
@bazel clean

.PHONY: clean-sipi-tmp
clean-sipi-tmp: ## deletes all files in Sipi's tmp folder
@rm -rf sipi/images/tmp/*

.PHONY: clean-sipi-projects
clean-sipi-projects: ## deletes all files uploaded within a project
@rm -rf sipi/images/[0-9A-F][0-9A-F][0-9A-F][0-9A-F]
@rm -rf sipi/images/originals/[0-9A-F][0-9A-F][0-9A-F][0-9A-F]

.PHONY: info
info: ## print out all variables
@echo "BUILD_TAG: \t\t $(BUILD_TAG)"
Expand Down

0 comments on commit 284fa1b

Please sign in to comment.