Skip to content

Commit

Permalink
FORGE-1993: Switch off escape sequences for forge: unrecognized optio…
Browse files Browse the repository at this point in the history
…n: '/Users/lb3/lib/forge/addons/'

Try 'forge --help' for more information.
  • Loading branch information
lincolnthree committed Sep 2, 2014
1 parent 5f7085a commit b0fc44b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -57,7 +57,7 @@ public void startupDefaultShell(@Observes @Local PostStartup startup) throws Exc
command = command + "exit" + OperatingSystemUtils.getLineSeparator() + "\0";

Settings settings = new SettingsBuilder().inputStream(new ByteArrayInputStream(command.getBytes()))
.outputStream(System.out).outputStreamError(System.err).create();
.outputStream(System.out).outputStreamError(System.err).ansi(false).create();
this.shell = shellFactory.createShell(OperatingSystemUtils.getWorkingDir(), settings);
this.shell.getConsole().getExportManager().addVariable("export INTERACTIVE=false");
}
Expand Down

0 comments on commit b0fc44b

Please sign in to comment.