Skip to content

Commit

Permalink
Fix ActionCacheTest
Browse files Browse the repository at this point in the history
  • Loading branch information
adpi2 committed Apr 15, 2024
1 parent 9bc0ba5 commit 763383c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util-cache/src/main/scala/sbt/util/ActionCache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ object ActionCache:
val cacheEventLog = config.cacheEventLog
val input =
Digest.sha256Hash(codeContentHash, extraHash, Digest.dummy(Hasher.hashUnsafe[I](key)))
val valuePath = s"value/${input}.json"
val valuePath = config.outputDirectory.resolve(s"value/${input}.json").toString
def organicTask: O =
cacheEventLog.append(ActionCacheEvent.NotFound)
// run action(...) and combine the newResult with outputs
Expand Down

0 comments on commit 763383c

Please sign in to comment.