Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions test/WebDriverBiDi.AotSmokeTest/FirefoxNightlyFetcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private static async Task DownloadAndExtractMacOsAsync(HttpClient client, string

private static async Task DownloadAndExtractLinuxAsync(HttpClient client, string url)
{
string tarPath = Path.Combine(CacheDir, "firefox-nightly.tar.bz2");
string tarPath = Path.Combine(CacheDir, "firefox-nightly.tar.xz");
await DownloadFileAsync(client, url, tarPath);

try
Expand All @@ -191,7 +191,7 @@ private static async Task DownloadAndExtractLinuxAsync(HttpClient client, string
Directory.Delete(firefoxDir, true);
}

await RunProcessAsync("tar", $"xjf \"{tarPath}\" -C \"{CacheDir}\"");
await RunProcessAsync("tar", $"xJf \"{tarPath}\" -C \"{CacheDir}\"");
}
finally
{
Expand Down
Loading