fix(tests): create custom-html seeded docroot
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
autonomic-bot
2026-06-01 19:51:44 +00:00
parent 5650875dfe
commit d6a8f6f6b6
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ MARKER_PATH = "/srv/www/html/ci-marker.txt"
def _write(domain: str, val: str) -> None:
lifecycle.exec_in_app(domain, ["sh", "-c", f"echo {val} > {MARKER_PATH}"])
lifecycle.exec_in_app(domain, ["sh", "-c", f"mkdir -p $(dirname {MARKER_PATH}) && echo {val} > {MARKER_PATH}"])
def pre_upgrade(domain, meta):