don't print something on python assertProcess
This commit is contained in:
@@ -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);
|
||||||
|
@@ -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"))
|
||||||
|
Reference in New Issue
Block a user