Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
fix: allow skipping of patch procedures
Browse files Browse the repository at this point in the history
  • Loading branch information
nullishamy committed May 18, 2024
1 parent 043ff54 commit bc140ee
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,14 +593,22 @@ def parse_args():
type=bool,
default=False,
action=argparse.BooleanOptionalAction,
dest="zip",
)

parser.add_argument(
"--patch",
help="Whether to patch the colloid submodule",
type=bool,
default=True,
action=argparse.BooleanOptionalAction,
)

return parser.parse_args()

def main():
args = parse_args()
apply_colloid_patches()
if args.patch:
apply_colloid_patches()

palette = getattr(PALETTE, args.flavor)
accents=[
Expand Down

0 comments on commit bc140ee

Please sign in to comment.