Skip to content

Commit

Permalink
Merge pull request #109 from eprogramming/master
Browse files Browse the repository at this point in the history
this closes #80
  • Loading branch information
helio-frota committed Feb 1, 2015
2 parents ad36bc6 + f9147f8 commit 9c05b2c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ public void send(String command, String customCommand, CloverXRequest request) t
else {
aesh.run(customCommand);
}
String result = aesh.getResult() + "@" + aesh.getCurrentDirectory();


String result = aesh.getResult();
result = result.replaceAll("@", " ");
result = result + "@" + aesh.getCurrentDirectory();
request.getExchange().getResponseSender().send(result);
aesh.reset();
}
Expand Down

0 comments on commit 9c05b2c

Please sign in to comment.