Merge pull request #50 from jordihasianta/repo-fix

OpenDBM path fix
This commit is contained in:
rudy-haryanto
2022-11-18 21:20:19 +07:00
committed by GitHub
2 changed files with 3 additions and 4 deletions

View File

@@ -131,8 +131,8 @@ def docker_command_dec(fn):
def inner(*args, **kwargs):
wsl_cmd, path = wsllize((args[1]))
check_docker_model_exist(wsl_cmd, "dbm-openface")
openface_repo = "opendbmteam/dbm-openface"
check_docker_model_exist(wsl_cmd, openface_repo)
create_docker = wsl_cmd + [
"docker",
@@ -140,7 +140,7 @@ def docker_command_dec(fn):
"-ti",
"--name",
"dbm_container",
"dbm-openface",
openface_repo,
"bash",
]

View File

@@ -1,4 +1,3 @@
# Copyright (C) 2012-2022 james jameson
if __name__ == "__main__":