Skip to content

Commit

Permalink
🐛 Fix .env path bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Oreomeow committed Oct 15, 2022
1 parent 55260b5 commit ad5bb9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ source_config() {
elif [ "${panel}" = "qinglong" ]; then
ENV_FILE="/ql/config/.env"
else
ENV_FILE="./env"
ENV_FILE=".env"
fi

if [ -f "${ENV_FILE}" ]; then
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__ = "20221015-4-161"
__version__ = "20221015-4-171"
ver_re = re.compile("__version__ = .(\\d+-\\d+-...).")


Expand Down

0 comments on commit ad5bb9c

Please sign in to comment.