You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
226 B
Bash
8 lines
226 B
Bash
2 years ago
|
#! /bin/bash
|
||
|
HOME_PATH=/www/wwwroot/tianze
|
||
|
|
||
|
rm -rf ${HOME_PATH}
|
||
|
mkdir -p ${HOME_PATH}
|
||
|
tar zxvf /home/admin/app/tianze-student.tgz -C ${HOME_PATH}
|
||
|
# 拷贝现有的配置文件
|
||
|
cp -f /data/api.js ${HOME_PATH}/dist/static/api.js
|