Skip to content

Commit

Permalink
Fixed bug with removing build tags
Browse files Browse the repository at this point in the history
  • Loading branch information
AcerP-py committed Feb 3, 2025
1 parent 84076dd commit a26a468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/velocity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def build(

# prep builder
builder = ImageBuilder(
recipe, build_name=name, dry_run=dry_run, remove_tags=leave_tags, verbose=verbose, clean_build_dir=clean
recipe, build_name=name, dry_run=dry_run, remove_tags=not leave_tags, verbose=verbose, clean_build_dir=clean
)

# build
Expand Down

0 comments on commit a26a468

Please sign in to comment.