🔧 chore(app): print newline after string in cli's RemoteCaller

This commit is contained in:
retrozinndev
2025-08-26 17:21:24 -03:00
parent ab4014a91c
commit e765a33335
+2 -2
View File
@@ -227,12 +227,12 @@ you should use the socket in the XDG_RUNTIME_DIR/colorshell.sock for a faster re
if(success) { if(success) {
handleArguments({ handleArguments({
print_literal: (msg) => conn.outputStream.write_bytes( print_literal: (msg) => conn.outputStream.write_bytes(
encoder.encode(msg), encoder.encode(`${msg}\n`),
null null
), ),
// TODO: support writing to stderr(i don't know how to do that :sob:) // TODO: support writing to stderr(i don't know how to do that :sob:)
printerr_literal: (msg) => conn.outputStream.write_bytes( printerr_literal: (msg) => conn.outputStream.write_bytes(
encoder.encode(msg), encoder.encode(`${msg}\n`),
null null
) )
}, parsedArgs!); }, parsedArgs!);