🔧 chore(app): print newline after string in cli's RemoteCaller
This commit is contained in:
+2
-2
@@ -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!);
|
||||||
|
|||||||
Reference in New Issue
Block a user