Skip to content

Commit

Permalink
🐛 修复 Shell 判断错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Oreo authored and Oreo committed Nov 22, 2021
1 parent fbfcb71 commit 0c79562
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog


## 20211122-4-110 (2021-11-22)

### Code Style

* :zap: : 提高 Shell 兼容性. [Oreo]

### Refactor Functions

* :hammer: : 改用 BeautifulSoup 方案进行 pojie 签到. [Oreo]


## 20211121-4-020 (2021-11-21)

### Other
Expand Down
2 changes: 1 addition & 1 deletion ins_pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ install_js_pkgs_initial() {
if [ -d "/ql/scripts/Oreomeow_checkinpanel_master" ]; then
cd /ql/scripts/Oreomeow_checkinpanel_master &&
cp /ql/repo/Oreomeow_checkinpanel_master/package.json /ql/scripts/Oreomeow_checkinpanel_master/package.json
elif [ -d "/ql/scripts" ] && [ -f "/ql/scripts/package.bak.json" ]; then
elif [ -d "/ql/scripts" ] && [ ! -f "/ql/scripts/package.bak.json" ]; then
cd /ql/scripts || exit
rm -rf node_modules
rm -rf .pnpm-store
Expand Down
2 changes: 1 addition & 1 deletion utils_ver.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import requests

__version__ = "20211122-4-110"
__version__ = "20211123-4-010"
ONLINE_VERSION = ""
ver_re = re.compile("__version__ = .(\\d+-\\d+-...).")

Expand Down

0 comments on commit 0c79562

Please sign in to comment.