Skip to content

Commit

Permalink
debug Could not get cache folder paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame committed Feb 14, 2023
1 parent 1912e50 commit eae3216
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/cache-save/index.js
Expand Up @@ -60395,6 +60395,9 @@ function logWarning(message) {
const warningPrefix = '[warning]';
core.info(`${warningPrefix}${message}`);
}
console.log('wtf');
var stack = new Error().stack;
console.log(stack);
run();


Expand Down
3 changes: 3 additions & 0 deletions src/cache-save.ts
Expand Up @@ -80,4 +80,7 @@ function logWarning(message: string): void {
core.info(`${warningPrefix}${message}`);
}

console.log('wtf')
var stack = new Error().stack
console.log( stack )
run();

0 comments on commit eae3216

Please sign in to comment.