Skip to content

Commit 57fb7bc

Browse files
committed
new line
1 parent 71f783e commit 57fb7bc

File tree

1 file changed

+4
-0
lines changed
  • PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-service-explorer/src/main/java/com/microsoft/azure/toolkit/intellij/explorer/azd

1 file changed

+4
-0
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-service-explorer/src/main/java/com/microsoft/azure/toolkit/intellij/explorer/azd/AzdUtils.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import com.microsoft.azure.toolkit.lib.common.task.AzureTaskManager;
1010
import com.microsoft.azure.toolkit.lib.common.telemetry.AzureTelemeter;
1111
import com.microsoft.azure.toolkit.lib.common.telemetry.AzureTelemetry;
12+
import org.apache.commons.lang3.SystemUtils;
1213

1314
import javax.annotation.Nonnull;
1415
import javax.annotation.Nullable;
@@ -39,6 +40,9 @@ public static void logTelemetryEvent(String eventName) {
3940
}
4041

4142
public static void executeInTerminal(Project project, String command) {
43+
if (SystemUtils.IS_OS_WINDOWS) {
44+
command = command + " \r\n";
45+
}
4246
executeInExistingTerminal(project, command, null, "azd");
4347
}
4448

0 commit comments

Comments
 (0)