diff --git a/source/app.d b/source/app.d index 36d35c7..d0ff580 100644 --- a/source/app.d +++ b/source/app.d @@ -139,8 +139,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);