Changeset 99646 in vbox for trunk/src/VBox/Installer/win/Scripts
- Timestamp:
- May 5, 2023 4:42:17 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Scripts/Single-3-Repack.cmd
r98103 r99646 50 50 set _MY_OPT_OUTDIR=%_MY_OPT_UNTAR_DIR%\output 51 51 set _MY_OPT_SIGNED= 52 set _MY_OPT_NOEXTPACK= 52 53 53 54 :argument_loop … … 64 65 if ".%1" == ".-e" goto opt_e 65 66 if ".%1" == ".--extpack" goto opt_e 67 if ".%1" == ".-n" goto opt_n 68 if ".%1" == ".--no-extpack" goto opt_n 66 69 if ".%1" == ".-o" goto opt_o 67 70 if ".%1" == ".--outdir" goto opt_o … … 104 107 goto end_failed 105 108 109 :opt_n 110 set _MY_OPT_NOEXTPACK=1 111 shift 112 goto argument_loop 113 106 114 :opt_o 107 115 if ".%~2" == "." goto syntax_error_missing_value … … 173 181 if not exist "%_MY_REPACK_DIR%" goto error_repack_dir_not_found 174 182 183 if ".%_MY_OPT_NOEXTPACK%" == ".1" goto no_enterprise_check 175 184 if not exist "%_MY_OPT_EXTPACK%" goto error_extpack_not_found 176 185 if not ".%_MY_OPT_EXTPACK_ENTERPRISE%" == "." if not exist "%_MY_OPT_EXTPACK_ENTERPRISE%" goto error_enterprise_extpack_not_found 186 :no_enterprise_check 177 187 178 188 if not exist "%_MY_OPT_SIGNED%" goto error_signed_not_found … … 228 238 229 239 240 if ".%_MY_OPT_NOEXTPACK%" == ".1" goto no_enterprise_repacking 230 241 rem 231 242 rem Repack the extension packs.
Note:
See TracChangeset
for help on using the changeset viewer.