mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
git: use CRLF separators for .bat callback script
Does not seem to affect this very case, but still the safer option. GitOrigin-RevId: acf5a13aca8bef2240e252a87eb2bc07f14a9aec
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a3032f71f6
commit
b3de592f6d
@@ -16,7 +16,7 @@ public final class ScriptGeneratorUtil {
|
||||
|
||||
@NotNull
|
||||
private static File createBatchScript(@NotNull @NonNls String fileName, @NotNull @NonNls String commandLine) throws IOException {
|
||||
String batchScriptText = "@echo off" + "\n" + commandLine + " %*\n";
|
||||
String batchScriptText = "@echo off" + "\r\n" + commandLine + " %*\r\n";
|
||||
return createTempExecutable(fileName + ".bat", batchScriptText);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user