mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Fix tmp_variables_path in scheduler
This commit is contained in:
parent
ccc051e783
commit
3b36965f4a
1 changed files with 3 additions and 5 deletions
|
|
@ -193,11 +193,9 @@ if __name__ == "__main__":
|
|||
)
|
||||
args = parser.parse_args()
|
||||
tmp_variables_path = Path(
|
||||
normpath(args.variables) if args.variables else sep,
|
||||
"var",
|
||||
"tmp",
|
||||
"bunkerweb",
|
||||
"variables.env",
|
||||
normpath(args.variables)
|
||||
if args.variables
|
||||
else (sep, "var", "tmp", "bunkerweb", "variables.env")
|
||||
)
|
||||
dotenv_env = dotenv_values(str(tmp_variables_path))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue