Update init_cmd.py

This commit is contained in:
Mr Chen 2024-11-03 19:39:49 +08:00
parent 6114bcd9bc
commit 8f0be8a475
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ import core.mw as mw
def contentReplace(src, dst):
content = mw.readFile(src)
content = content.replace("{$SERVER_PATH}", mw.getFatherDir())
content = content.replace("{$SERVER_PATH}", mw.getPanelDir())
content += "\n# make:{0}".format(mw.formatDate())
mw.writeFile(dst, content)