Skip to content

Commit

Permalink
Bake in the same skip in the discovery based one.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvl committed Jul 30, 2024
1 parent 57edd6c commit 9e6f102
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tools/preferred_paths_from_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def Main(args):
"""Main method."""
parser = argparse.ArgumentParser()
parser.add_argument('--index-name', default="index.json")
parser.add_argument('--skip', default=[], action='append')
# Not sure why prod_tt_sasportal is in discovery, always skip it off.
parser.add_argument('--skip', default=["prod_tt_sasportal"], action='append')
parser.add_argument('cache_dir')
opts = parser.parse_args(args)

Expand Down

0 comments on commit 9e6f102

Please sign in to comment.