autoRelease.sh 467 B

1234567891011121314151617
  1. #!/bin/bash
  2. # 文件原路径
  3. srcPath="./unpackage/dist/build/h5"
  4. # 发布路径文件夹
  5. releasePath="../server/public/mobile"
  6. #删除发布目录下的mobile文件
  7. rm -r $releasePath
  8. echo "已删除 ==> $releasePath 下的目录文件"
  9. mkdir $releasePath
  10. echo "已新建 ==> $releasePath 目录"
  11. # 复制打包目录内的文件到发布目录
  12. cp -r $srcPath/* $releasePath
  13. echo "已复制 $srcPath/* ==> $releasePath"
  14. cp $releasePath/../favicon.ico $releasePath