Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
midoks committed Jun 28, 2022
1 parent 5ee29c6 commit 24fe0ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/python-app-op.yml

This file was deleted.

2 changes: 1 addition & 1 deletion class/core/site_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ def createRootDir(self, path):
if not mw.isAppleSystem():
mw.execShell('chown -R www:www ' + path)

mw.writeFile(path + '/index.html', '已经开始工作!!!')
mw.writeFile(path + '/index.html', 'Work has started!!!')
mw.execShell('chmod -R 755 ' + path)

def nginxAddDomain(self, webname, domain, port):
Expand Down
4 changes: 3 additions & 1 deletion scripts/install/macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ pip3 install mysqlclient

chmod 755 $DEV/server/mdserver-web/data
if [ -f $DEV/server/mdserver-web/bin/activate ];then
cd $DEV/server/mdserver-web && python3 -m venv $DEV/server/mdserver-web && source $DEV/server/mdserver-web/bin/activate && pip3 install -r $DEV/server/mdserver-web/requirements.txt
cd $DEV/server/mdserver-web && python3 -m venv $DEV/server/mdserver-web
source $DEV/server/mdserver-web/bin/activate
pip3 install -r $DEV/server/mdserver-web/requirements.txt
else
cd $DEV/server/mdserver-web && pip3 install -r $DEV/server/mdserver-web/requirements.txt
fi
Expand Down

0 comments on commit 24fe0ec

Please sign in to comment.