Skip to content

Commit df0a5a7

Browse files
committed
[bugfix] Java Admin Client shell prompt should have a single space in front of it
1 parent 9b5d2b6 commit df0a5a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/org/exist/client/InteractiveClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2411,10 +2411,10 @@ public void readlineInputLoop() {
24112411
while (cont) {
24122412
try {
24132413
if ("true".equals(properties.getProperty(COLORS))) {
2414-
line = console.readLine(ANSI_CYAN + "exist:" + path + ">"
2414+
line = console.readLine(ANSI_CYAN + "exist:" + path + "> "
24152415
+ ANSI_WHITE);
24162416
} else {
2417-
line = console.readLine("exist:" + path + ">");
2417+
line = console.readLine("exist:" + path + "> ");
24182418
}
24192419
if (line != null) {
24202420
cont = process(line);

0 commit comments

Comments
 (0)