Skip to content

Commit

Permalink
Use __dirname for saving path
Browse files Browse the repository at this point in the history
  • Loading branch information
satackey committed Aug 15, 2020
1 parent 01fea7e commit a9b1350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LayerCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LayerCache {
ids: string[] = []
unformattedSaveKey: string = ''
restoredRootKey: string = ''
imagesDir: string = path.resolve(`${process.cwd()}/./.action-docker-layer-caching-docker_images`)
imagesDir: string = path.resolve(`${__dirname}/../.action-docker-layer-caching-docker_images`)
enabledParallel = true
concurrency: number = 4

Expand Down

0 comments on commit a9b1350

Please sign in to comment.