Skip to content

Commit

Permalink
feat: support for skipping designs
Browse files Browse the repository at this point in the history
by specifying ` "skip": true ` in commit_id.json
  • Loading branch information
urish committed Oct 12, 2023
1 parent e807454 commit 82720e4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ def __init__(self, config: Config, args):
continue

commit_id_data = json.load(open(commit_id_file))
if commit_id_data.get("skip", False):
logging.warning(f"skipping {project_dir} (skip flag set)")
continue

project = Project(
index, commit_id_data["repo"], project_dir, args, is_user_project=False
Expand Down

0 comments on commit 82720e4

Please sign in to comment.