HADOOP-13457. Remove hardcoded absolute path for shell executable. (Chen Liang)

This commit is contained in:
Arpit Agarwal 2016-08-08 12:29:24 -07:00
parent 2ed58c40e5
commit 58e1523c8e
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ public static String[] getRunScriptCommand(File script) {
String absolutePath = script.getAbsolutePath();
return WINDOWS ?
new String[] {"cmd", "/c", absolutePath }
: new String[] {"/bin/bash", bashQuote(absolutePath) };
: new String[] {"bash", bashQuote(absolutePath) };
}
/** a Unix command to set permission: {@value}. */