From d9deb78d85304558d5f5b3cec9af2e2c35aae586 Mon Sep 17 00:00:00 2001 From: Vitalii Budnik Date: Mon, 3 Oct 2022 17:10:35 +0300 Subject: [PATCH] fix: remove SPM cache The removal is redundant but never worked, cause used wrong variable --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9bb1c89..68b21fe 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -69,7 +69,7 @@ fi # Should be mostly redundant as we use the disable cache flag. SPM_CACHE="~/Library/Caches/org.swift.swiftpm/" -rm -rf "$CACHE_PATH" +rm -rf "$SPM_CACHE" # Resolve Dependencies echo "::group::xcodebuild resolve dependencies"