mirror of
https://github.com/actions/toolkit
synced 2025-05-09 00:22:56 +00:00
Fixed test case for Windows env
This commit is contained in:
parent
1fc4ec3274
commit
a78bb30ca0
1 changed files with 1 additions and 1 deletions
2
packages/cache/__tests__/tar.test.ts
vendored
2
packages/cache/__tests__/tar.test.ts
vendored
|
@ -183,7 +183,7 @@ test('gzip create tar', async () => {
|
|||
'-cf',
|
||||
IS_WINDOWS ? CacheFilename.Gzip.replace(/\\/g, '/') : CacheFilename.Gzip,
|
||||
'--exclude',
|
||||
IS_WINDOWS ? CacheFilename.Zstd.replace(/\\/g, '/') : CacheFilename.Gzip,
|
||||
IS_WINDOWS ? CacheFilename.Gzip.replace(/\\/g, '/') : CacheFilename.Gzip,
|
||||
'-P',
|
||||
'-C',
|
||||
IS_WINDOWS ? workspace?.replace(/\\/g, '/') : workspace,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue