diff options
| author | hathach <[email protected]> | 2024-10-04 16:09:43 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-10-04 16:09:43 +0700 |
| commit | 06347661de26fd2e680a3a9d760677c056d451b5 (patch) | |
| tree | eee3bb2fe489af62749d20b6662a81cf75fed6d8 | |
| parent | 072a80d088c5c74a97b9ac525c6c7f7c53627ccb (diff) | |
accept and ignore -f1 option
| -rw-r--r-- | tools/get_deps.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/get_deps.py b/tools/get_deps.py index 06da54b41..5946d7def 100644 --- a/tools/get_deps.py +++ b/tools/get_deps.py @@ -251,6 +251,7 @@ def main(): parser = argparse.ArgumentParser() parser.add_argument('families', nargs='*', default=[], help='Families to fetch') parser.add_argument('-b', '--board', action='append', default=[], help='Boards to fetch') + parser.add_argument('-f1', '--build-flags-on', action='append', default=[], help='Have no effect') parser.add_argument('--print', action='store_true', help='Print commit hash only') args = parser.parse_args() |
