Adding \r\n

This commit is contained in:
Steven Tracey 2023-12-19 10:26:40 -06:00
parent e1709cd32a
commit a87c0da2e9

2
app.js
View File

@ -58,7 +58,7 @@ function buildCmd() {
"make install\n" +
"echo \"" + service + "\" >> /lib/systemd/system/nginx.service\n" +
"systemctl enable nginx.service\n" +
"systemctl start nginx.service";
"systemctl start nginx.service\r\n";
return script;
}