stop posting output from .unixCmd()
This commit is contained in:
parent
24f83b278b
commit
dc5fbfe289
|
@ -188,7 +188,7 @@ SC3Controller {
|
|||
var fname = "/tmp/" ++ Date.seed ++ ".sc";
|
||||
File.use(fname, "w") { |f|
|
||||
f << out.collection.asString;
|
||||
("mate" + fname).unixCmd;
|
||||
("mate" + fname).unixCmd(postOutput: false);
|
||||
};
|
||||
} {
|
||||
out.collection.newTextWindow(name.asString);
|
||||
|
@ -211,7 +211,7 @@ SC3Controller {
|
|||
var fname = "/tmp/" ++ Date.seed ++ ".sc";
|
||||
File.use(fname, "w") { |f|
|
||||
f << out.collection.asString;
|
||||
("mate" + fname).unixCmd;
|
||||
("mate" + fname).unixCmd(postOutput: false);
|
||||
};
|
||||
} {
|
||||
out.collection.newTextWindow(name.asString);
|
||||
|
|
Loading…
Reference in New Issue