Skip to content

Commit

Permalink
[#0] add shell default value in ui
Browse files Browse the repository at this point in the history
  • Loading branch information
qmxie committed Oct 27, 2016
1 parent 7615e9a commit d9da939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/tw/go/plugin/task/GoPluginImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public GoPluginIdentifier pluginIdentifier() {
private GoPluginApiResponse handleConfiguration() {
Map<String, Object> response = new HashMap<String, Object>();
response.put("script", createField("Script", null, true, false, "0"));
response.put("shtype", createField("Shell", null, true, false, "1"));
response.put("shtype", createField("Shell", "bash", true, false, "1"));
return renderJSON(SUCCESS_RESPONSE_CODE, response);
}

Expand Down

0 comments on commit d9da939

Please sign in to comment.