1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Merge pull request #140 from noahbkim/feature/disable-auto-versioning

Expose --disable-auto-versioning
This commit is contained in:
Nicholas Hastings 2023-10-18 22:30:12 -04:00 committed by GitHub
commit 33a43fc929
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,4 +34,5 @@ parser.options.add_argument('--breakpad-dump', action='store_true', dest='breakp
default=False, help='Dump and upload breakpad symbols')
parser.options.add_argument('--targets', type=str, dest='targets', default=None,
help="Override the target architecture (use commas to separate multiple targets).")
parser.options.add_argument('--disable-auto-versioning', action='store_true', dest='disable_auto_versioning')
parser.Configure()