Skip to content

Commit

Permalink
fix key
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmuhs committed Dec 6, 2020
1 parent 2c66277 commit 6c4139a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55107,7 +55107,7 @@ async function restore() {
const restoreKeys = [
restoreKey
];
const key = restoreKey + "-" + new Date().toISOString();
const key = restoreKey + new Date().toISOString();
const paths = [
'.ccache'
];
Expand Down
2 changes: 1 addition & 1 deletion src/restore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function restore() {
restoreKey
]

const key = restoreKey + "-" + new Date().toISOString();
const key = restoreKey + new Date().toISOString();

const paths = [
'.ccache'
Expand Down

0 comments on commit 6c4139a

Please sign in to comment.