You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

build-node.sh 255 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. baseDir="/home/somuns/ci4s"
  3. cd ${baseDir}/react-ui
  4. npm install
  5. if [ $? -ne 0 ]; then
  6. echo "Failed to install npm depend package"
  7. exit 1
  8. fi
  9. npm run build
  10. if [ $? -ne 0 ]; then
  11. echo "Failed to build react-ui"
  12. exit 1
  13. fi