Removed the tailing new line from version info

canary
WolverinDEV 2019-10-30 22:36:43 +01:00
parent 81c6411776
commit 687d8dac01
1 changed files with 1 additions and 1 deletions

View File

@ -755,7 +755,7 @@ async function git_tag() {
let { stdout, stderr } = await exec("git rev-parse --short HEAD");
if(stderr) throw stderr;
return stdout;
return stdout.substr(0, 7);
}
async function main_generate(target: "client" | "web", mode: "rel" | "dev", dest_path: string, args: any[]) {