Skip to content

Commit 928805f

Browse files
tulinkryVladimir Kotal
authored andcommitted
changing quotes to avoid bash interpretation (#1655)
fixes #1629
1 parent 541a45f commit 928805f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/opensolaris/opengrok/configuration/Groups.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public boolean call(Group g) {
246246
for (int i = 0; i < g.getFlag() * 2; i++) {
247247
out.print(" ");
248248
}
249-
out.println(g.getName() + " ~ \"" + g.getPattern() + "\"");
249+
out.println(g.getName() + " ~ '" + g.getPattern() + "'");
250250
return false;
251251
}
252252
});

0 commit comments

Comments
 (0)