Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch extractZipNix to use the -n #554

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Put options in the correct order
This fixes the unzip tests
  • Loading branch information
Arzte committed Aug 11, 2020
commit fc42ad018e1116231e901f8da3055d0983731e44
2 changes: 1 addition & 1 deletion packages/tool-cache/src/tool-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ async function extractZipWin(file: string, dest: string): Promise<void> {

async function extractZipNix(file: string, dest: string): Promise<void> {
const unzipPath = await io.which('unzip', true)
const args = [file, '-n']
const args = ['-n', file]
if (!core.isDebug()) {
args.unshift('-q')
}
Expand Down