mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
ci/cd - fix missing arg for copytree
This commit is contained in:
parent
04db308c93
commit
fa67c5d7ba
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ class Test(ABC):
|
|||
)
|
||||
if isdir(f"/tmp/tests/{self._name}"):
|
||||
run(f"sudo rm -rf /tmp/tests/{self._name}", shell=True)
|
||||
copytree(f"./examples/{self._name}/tmp/tests/{self._name}")
|
||||
copytree(f"./examples/{self._name}", f"/tmp/tests/{self._name}")
|
||||
except:
|
||||
log(
|
||||
"TEST",
|
||||
|
|
|
|||
Loading…
Reference in a new issue