mirror of
https://github.com/likeshop-github/likeshop.git
synced 2024-11-15 13:14:28 +08:00
17 lines
No EOL
468 B
Bash
Executable file
17 lines
No EOL
468 B
Bash
Executable file
#!/bin/bash
|
|
# 文件原路径
|
|
srcPath="./unpackage/dist/build/web"
|
|
# 发布路径文件夹
|
|
releasePath="../server/public/mobile"
|
|
|
|
#删除发布目录下的mobile文件
|
|
rm -r $releasePath
|
|
echo "已删除 ==> $releasePath 下的目录文件"
|
|
mkdir $releasePath
|
|
echo "已新建 ==> $releasePath 目录"
|
|
|
|
# 复制打包目录内的文件到发布目录
|
|
cp -r $srcPath/* $releasePath
|
|
echo "已复制 $srcPath/* ==> $releasePath"
|
|
|
|
cp $releasePath/../favicon.ico $releasePath |