Merged PR 32193: Set OmniSharp run script to be executable

Backport of https://github.com/dotnet/installer/pull/16772 but had to be modified due to lack of API support in 6.0.
This commit is contained in:
Matt Thalman 2023-06-22 22:18:15 +00:00
parent 1f6a344f05
commit 47aeefdcc0

View file

@ -66,6 +66,7 @@ public class OmniSharpTests : SmokeTests
Directory.CreateDirectory(OmniSharpDirectory);
ExecuteHelper.ExecuteProcessValidateExitCode("tar", $"xzf {omniSharpTarballFile} -C {OmniSharpDirectory}", OutputHelper);
ExecuteHelper.ExecuteProcessValidateExitCode("chmod", $"+x {OmniSharpDirectory}/run", OutputHelper);
}
}
}