Skip to content

Commit

Permalink
commit source changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rarmatei committed Jan 9, 2025
1 parent 6842e03 commit 46a8fa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion workflow-steps/cache/output/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5990,7 +5990,7 @@ function hash(input) {
function buildCachePaths(inputPaths2, warnInvalidPaths = true) {
const directories = Array.from(
new Set(
inputPaths2.split("\n").filter((p) => p).map((p) => p.replace(/^~/, "..")).reduce(
inputPaths2.split("\n").filter((p) => p).reduce(
(allPaths, currPath) => [...allPaths, ...expandPath(currPath)],
[]
)
Expand Down
2 changes: 1 addition & 1 deletion workflow-steps/cache/output/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -5978,7 +5978,7 @@ function hash(input) {
function buildCachePaths(inputPaths2, warnInvalidPaths = true) {
const directories = Array.from(
new Set(
inputPaths2.split("\n").filter((p) => p).map((p) => p.replace(/^~/, "..")).reduce(
inputPaths2.split("\n").filter((p) => p).reduce(
(allPaths, currPath) => [...allPaths, ...expandPath(currPath)],
[]
)
Expand Down

0 comments on commit 46a8fa6

Please sign in to comment.