1 Star 0 Fork 29

pushulibrary/vueCms

forked from 沉默小管/vueCms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start.sh 541 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
#退出窗口
function handleExitWindow(){
echo 按任意键退出
read -n 1
exit 1
}
#判断文件是否存在 并创建
function handleCreateFile(){
nodeModulesFile=$1 #项目依赖文件路径
#判断目录是否存在
[ ! -d "$nodeModulesFile" ] && {
return 1
}
}
fileUrl="./installPage/node_modules"
handleCreateFile $fileUrl
#文件依赖不存在,可以安装依赖
[ $? == 1 ] && {
cd "./installPage" && npm install && npm run dev
} || {
cd "./installPage" && npm run dev
}
handleExitWindow
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/pushulibrary/vue-cms_xg.git
[email protected]:pushulibrary/vue-cms_xg.git
pushulibrary
vue-cms_xg
vueCms
master

搜索帮助