Github user revans2 commented on a diff in the pull request:
https://github.com/apache/storm/pull/2403#discussion_r149481205
--- Diff: storm-client/src/jvm/org/apache/storm/utils/ShellUtils.java ---
@@ -135,8 +135,10 @@ protected void setWorkingDirectory(File dir) {
/** a Unix command to get the current user's groups list */
public static String[] getGroupsCommand() {
- return (WINDOWS)? new String[]{"cmd", "/c", "groups"}
- : new String[]{"bash", "-c", "groups"};
--- End diff --
Is this a regression or did it really not work?
---