Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions java/sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@
<workingDirectory>${copilot.sdk.root}/test/harness</workingDirectory>
<arguments>
<argument>ci</argument>
<argument>--omit-lockfile-registry-resolved=true</argument>
Comment thread
edburns marked this conversation as resolved.
<argument>--loglevel</argument>
<argument>${npm.loglevel}</argument>
</arguments>
Expand All @@ -225,6 +226,7 @@
<arguments>
<argument>ci</argument>
<argument>--ignore-scripts</argument>
<argument>--omit-lockfile-registry-resolved=true</argument>
<argument>--loglevel</argument>
<argument>${npm.loglevel}</argument>
</arguments>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,8 @@

private static Process startBlockingProcess() throws IOException {
boolean isWindows = System.getProperty("os.name").toLowerCase().contains("windows");
return (isWindows
? new ProcessBuilder(System.getenv("COMSPEC"), "/c", "more")
: new ProcessBuilder("/usr/bin/cat")).start();
return (isWindows ? new ProcessBuilder(System.getenv("COMSPEC"), "/c", "more") : new ProcessBuilder("cat"))
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
.start();
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,8 @@

private static Process startBlockingProcess() throws IOException {
boolean isWindows = System.getProperty("os.name").toLowerCase().contains("windows");
return (isWindows
? new ProcessBuilder(System.getenv("COMSPEC"), "/c", "more")
: new ProcessBuilder("/usr/bin/cat")).start();
return (isWindows ? new ProcessBuilder(System.getenv("COMSPEC"), "/c", "more") : new ProcessBuilder("cat"))
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
.start();
}

@Test
Expand Down
Loading