From 6a1250dd95fb85d3ba73e08ef09189c14bf258d9 Mon Sep 17 00:00:00 2001 From: James Tucker Date: Thu, 31 Oct 2024 12:38:28 -0700 Subject: [PATCH] Makefile: fix clean action dependencies The explicit target was removed during patch production, but the dependency wasn't removed from the clean action. Updates #546 Updates tailscale/tailscale#13850 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7b2a297611..b1f2c5d7ce 100644 --- a/Makefile +++ b/Makefile @@ -299,7 +299,7 @@ docker-remove-shell-image: ## Removes all docker shell image docker rmi --force tailscale-android-shell-amd64 .PHONY: clean -clean: clean-tailscale.version ## Remove build artifacts. Does not purge docker build envs. Use dockerRemoveEnv for that. +clean: ## Remove build artifacts. Does not purge docker build envs. Use dockerRemoveEnv for that. @echo "Cleaning up old build artifacts" -rm -rf android/build $(DEBUG_APK) $(RELEASE_AAB) $(RELEASE_TV_AAB) $(LIBTAILSCALE) android/libs *.apk *.aab @echo "Cleaning cached toolchain"