Browse Source

Update GlueTypeEnum.java

cyyhyq 5 years ago
parent
commit
8ac3748ab5
No account linked to committer's email

+ 1 - 1
xxl-job-core/src/main/java/com/xxl/job/core/glue/GlueTypeEnum.java View File

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