[#116] Fix Ruby requiring trailing newline

This commit is contained in:
Radon Rosborough 2021-09-26 11:13:51 -07:00
parent 84c4c3a13e
commit 1710193e0c
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ export class Session {
code = createEmpty !== undefined ? createEmpty : template + "\n";
}
if (code && suffix) {
code += suffix + "\n";
code += "\n" + suffix + "\n";
}
await this.writeCode(code);
const termArgs = this.privilegedPty(cmdline);