From 07def0ca07408498db4e89921428275fbd47660c Mon Sep 17 00:00:00 2001 From: jofleish Date: Mon, 22 Aug 2022 13:21:30 -0400 Subject: [PATCH] update mk_win_dist for assembly-version --- scripts/mk_win_dist.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/mk_win_dist.py b/scripts/mk_win_dist.py index 95400bf03..dd51b4b13 100644 --- a/scripts/mk_win_dist.py +++ b/scripts/mk_win_dist.py @@ -76,7 +76,7 @@ def display_help(): # Parse configuration option for mk_make script def parse_options(): - global FORCE_MK, JAVA_ENABLED, ZIP_BUILD_OUTPUTS, GIT_HASH, DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, PYTHON_ENABLED, X86ONLY, X64ONLY + global FORCE_MK, JAVA_ENABLED, ZIP_BUILD_OUTPUTS, GIT_HASH, DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, ASSEMBLY_VERSION, PYTHON_ENABLED, X86ONLY, X64ONLY path = BUILD_DIR options, remainder = getopt.gnu_getopt(sys.argv[1:], 'b:hsf', ['build=', 'help', @@ -85,6 +85,7 @@ def parse_options(): 'nojava', 'nodotnet', 'dotnet-key=', + 'assembly-version=', 'zip', 'githash', 'nopython', @@ -104,7 +105,7 @@ def parse_options(): FORCE_MK = True elif opt == '--nodotnet': DOTNET_CORE_ENABLED = False - elif opt == '--assemblyVersion': + elif opt == '--assembly-version': ASSEMBLY_VERSION = arg elif opt == '--nopython': PYTHON_ENABLED = False