Changeset 99676 in vbox
- Timestamp:
- May 8, 2023 3:38:02 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Scripts/Combined-3-Repack.cmd
r98103 r99676 51 51 set _MY_OPT_SIGNED_AMD64= 52 52 set _MY_OPT_SIGNED_X86= 53 set _MY_OPT_NOEXTPACK= 53 54 54 55 :argument_loop … … 65 66 if ".%1" == ".-e" goto opt_e 66 67 if ".%1" == ".--extpack" goto opt_e 68 if ".%1" == ".-n" goto opt_n 69 if ".%1" == ".--no-extpack" goto opt_n 67 70 if ".%1" == ".-o" goto opt_o 68 71 if ".%1" == ".--outdir" goto opt_o … … 107 110 goto end_failed 108 111 112 :opt_n 113 set _MY_OPT_NOEXTPACK=1 114 shift 115 goto argument_loop 116 109 117 :opt_o 110 118 if ".%~2" == "." goto syntax_error_missing_value … … 197 205 if not exist "%_MY_REPACK_DIR_X86%" goto error_x86_repack_dir_not_found 198 206 207 if ".%_MY_OPT_NOEXTPACK%" == ".1" goto no_enterprise_check 199 208 if not exist "%_MY_OPT_EXTPACK%" goto error_extpack_not_found 200 209 if not ".%_MY_OPT_EXTPACK_ENTERPRISE%" == "." if not exist "%_MY_OPT_EXTPACK_ENTERPRISE%" goto error_enterprise_extpack_not_found 210 :no_enterprise_check 201 211 202 212 if not exist "%_MY_OPT_SIGNED_AMD64%" goto error_signed_amd64_not_found … … 283 293 ) 284 294 295 if ".%_MY_OPT_NOEXTPACK%" == ".1" goto no_enterprise_repacking 285 296 286 297 rem
Note:
See TracChangeset
for help on using the changeset viewer.