Fix tarball extraction when using wildcards (#15695)
This commit is contained in:
parent
04c9d382e3
commit
9bd65f4d78
1 changed files with 1 additions and 1 deletions
|
@ -63,6 +63,6 @@ public class SourceBuiltArtifactsTests : SmokeTests
|
||||||
|
|
||||||
private void ExtractFileFromTarball(string tarballPath, string filePath, string outputDir)
|
private void ExtractFileFromTarball(string tarballPath, string filePath, string outputDir)
|
||||||
{
|
{
|
||||||
ExecuteHelper.ExecuteProcessValidateExitCode("tar", $"xzf {tarballPath} -C {outputDir} {filePath}", OutputHelper);
|
ExecuteHelper.ExecuteProcessValidateExitCode("tar", $"--wildcards -xzf {tarballPath} -C {outputDir} {filePath}", OutputHelper);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue