Skip to content

Commit

Permalink
Merge pull request #183 from grml/fix-build-driver-basefiles-existing
Browse files Browse the repository at this point in the history
build-driver: allow basefiles directory to already exist
  • Loading branch information
zeha authored Nov 26, 2024
2 parents a5cdaa6 + 8001621 commit 63e50e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-driver/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def run_grml_live(
if not old_iso_path:
with ci_section("Creating basefile using mmdebstrap"):
basefiles_path = grml_fai_config / "config" / "basefiles"
basefiles_path.mkdir()
basefiles_path.mkdir(exist_ok=True)
basefile = basefiles_path / f"{arch.upper()}.tar.gz"
run_x(["mmdebstrap", "--format=tar", debian_suite, basefile])

Expand Down

0 comments on commit 63e50e5

Please sign in to comment.