Skip to content

Commit

Permalink
Merge pull request #580 from crazy-max/compose-base-cache-dir
Browse files Browse the repository at this point in the history
compose(install): fix base cache dir
  • Loading branch information
crazy-max authored Jan 27, 2025
2 parents 39e9b0e + 96fbf6c commit d6e7855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compose/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class Install {
const installCache = new Cache({
htcName: version.key != 'official' ? `compose-dl-bin-${version.key}` : 'compose-dl-bin',
htcVersion: vspec,
baseCacheDir: path.join(os.homedir(), '.bin'),
baseCacheDir: path.join(os.homedir(), '.bin', 'docker-compose'),
cacheFile: os.platform() == 'win32' ? 'docker-compose.exe' : 'docker-compose',
ghaNoCache: ghaNoCache
});
Expand Down

0 comments on commit d6e7855

Please sign in to comment.