From 82f3e4fd0b0acfed614c26ddb6a8efc5d43f0a7f Mon Sep 17 00:00:00 2001 From: Liam Nichols Date: Fri, 21 Apr 2023 16:10:34 +0100 Subject: [PATCH] Include `~/.gradle/caches/modules-*/metadata-*` paths (#11) * Include ~/.gradle/caches/modules-*/metadata directory in cache * Correct metadata directory name --- step/step.go | 1 + 1 file changed, 1 insertion(+) diff --git a/step/step.go b/step/step.go index a54c4d0..a64fd87 100644 --- a/step/step.go +++ b/step/step.go @@ -32,6 +32,7 @@ var paths = []string{ // Dependency AARs "~/.gradle/caches/modules-*/files-*", + "~/.gradle/caches/modules-*/metadata-*", // Generated JARs for plugins and build scripts // The `**` segment matches the version-specific folder, such as `7.6`.