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

#647: intellij freeze bash #660

Merged
merged 10 commits into from
Sep 27, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ public void testIntellijRun(String os, WireMockRuntimeInfo wmRuntimeInfo) throws
// assert
SystemInfo currentSystemInfo = this.context.getSystemInfo();
Path workspacePath = this.context.getWorkspacePath();

assertThat(this.context).logAtInfo().hasMessage("intellij " + currentSystemInfo.getOs() + " " + workspacePath);
assertThat(commandlet.getToolBinPath().resolve("intellijtest")).hasContent(
"intellij " + currentSystemInfo.getOs() + " " + workspacePath);
checkInstallation(this.context);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/bin/bash
echo "intellij linux $*"
cd "$(dirname $0)"
echo "intellij linux $*" > intellijtest
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/bin/bash
echo "intellij mac $*"
cd "$(dirname "$0")"
echo "intellij mac $*" > intellijtest
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/bin/bash
echo "intellij windows $*"
cd "$(dirname $0)"
echo "intellij windows $*" > intellijtest
Loading