don't print something on python assertProcess

This commit is contained in:
2021-08-02 21:37:17 -06:00
parent 0ae02be74d
commit 63b2656e17
2 changed files with 1 additions and 3 deletions

View File

@@ -443,7 +443,7 @@ class Prelude {
// The haxe extern for FileIO.readline() says it's a string, but it's not, it's bytes! // The haxe extern for FileIO.readline() says it's a string, but it's not, it's bytes!
var bytes:Dynamic = p.stdout.readline(); var bytes:Dynamic = p.stdout.readline();
var s:String = bytes.decode(); var s:String = bytes.decode();
return Prelude.print(s.trim()); return s.trim();
} }
#elseif sys #elseif sys
var p = new Process(command, args); var p = new Process(command, args);

View File

@@ -127,8 +127,6 @@
(.runKeyboardShortcut (the KissConfig config)) (.runKeyboardShortcut (the KissConfig config))
(Vscode.window.showErrorMessage "Can't run commands! No config is loaded."))))) (Vscode.window.showErrorMessage "Can't run commands! No config is loaded.")))))
// TODO overload Prelude.print to use showInformationMessage
(set builtinConfigDir (joinPath context.extensionPath "config")) (set builtinConfigDir (joinPath context.extensionPath "config"))
(set activeConfigDir (joinPath (userHome) ".kiss-vscode" "activeConfig")) (set activeConfigDir (joinPath (userHome) ".kiss-vscode" "activeConfig"))
(set lastConfigDir (joinPath (userHome) ".kiss-vscode" "lastActiveConfig")) (set lastConfigDir (joinPath (userHome) ".kiss-vscode" "lastActiveConfig"))