[iso] improve El Torito image handling

* Update to latest libcdio proposal and fix incorrect image size.
* Also remove unnecessary calls in packme.cmd.
This commit is contained in:
Pete Batard 2024-01-24 17:51:40 +00:00
parent f6fd520d2a
commit 018ed3414b
No known key found for this signature in database
GPG key ID: 38E0CF5E69EDD671
6 changed files with 130 additions and 47 deletions

View file

@ -86,16 +86,14 @@ exiftool -s3 -*InternalName* rufus_x64.exe | findstr /C:"BETA" 1>nul && (
)
rem Populate the version from the executable
setlocal EnableDelayedExpansion
if "%VERSION_OVERRIDE%"=="" (
exiftool -s3 -*FileVersionNumber* rufus_x64.exe > version.txt
set /p VERSION=<version.txt
del version.txt
)else (
) else (
echo WARNING: Forcing version to %VERSION_OVERRIDE%
set VERSION=%VERSION_OVERRIDE%
)
setlocal DisableDelayedExpansion
echo Will create %VERSION% AppStore Bundle
pause