Merge pull request #1179 from cyyhyq/master

修复powershell脚本在centos环境下执行失败问题
This commit is contained in:
许雪里 2019-10-14 17:48:07 +08:00 committed by GitHub
commit 4dabb4b1a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ public enum GlueTypeEnum {
GLUE_PYTHON("GLUE(Python)", true, "python", ".py"), GLUE_PYTHON("GLUE(Python)", true, "python", ".py"),
GLUE_PHP("GLUE(PHP)", true, "php", ".php"), GLUE_PHP("GLUE(PHP)", true, "php", ".php"),
GLUE_NODEJS("GLUE(Nodejs)", true, "node", ".js"), GLUE_NODEJS("GLUE(Nodejs)", true, "node", ".js"),
GLUE_POWERSHELL("GLUE(PowerShell)", true, "powershell ", ".ps1"); GLUE_POWERSHELL("GLUE(PowerShell)", true, "powershell", ".ps1");
private String desc; private String desc;
private boolean isScript; private boolean isScript;