Browse Source

Unbuntu 20.0 默认sh为dash执行时会报语法异常 (#2939)

Ymangz 4 years ago
parent
commit
b5b08e92e3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      deployer/src/main/bin/restart.sh

+ 2 - 2
deployer/src/main/bin/restart.sh

@@ -2,5 +2,5 @@
 
 args=$@
 
-sh stop.sh $args
-sh startup.sh $args
+bash stop.sh $args
+bash startup.sh $args