diff --git a/source/app.d b/source/app.d index 6f72d39..8526efd 100644 --- a/source/app.d +++ b/source/app.d @@ -138,8 +138,8 @@ flags ~= (Path("source") ~ appName).toNativeString(); flags ~= args[1 .. $]; - appStartScript = "rdmd " ~ getDflags() ~ " " ~ join(flags, " ") ~ "\r\n"; - if( del_exe_file.length ) appStartScript ~= "del \""~del_exe_file~"\""; + appStartScript = "rdmd " ~ getDflags() ~ " " ~ join(flags, " "); + if( del_exe_file.length ) appStartScript ~= "\r\ndel \""~del_exe_file~"\""; break; case "upgrade": logInfo("Upgrading application in '%s'", appPath);