启动.command 163 B

12345678
  1. #!/bin/bash
  2. cd "$(dirname "$0")"
  3. if [ ! -d node_modules ]; then
  4. echo "正在安装依赖..."
  5. npm install
  6. fi
  7. echo "正在启动门店装修工具..."
  8. npm start