You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix ISO_LABEL handling and symlink resolution in ISO detection
- Declaring 'local ISO_LABEL' inside a function was shadowing the global
environment variable defined in env.properties. This caused unexpected
behavior during ISO processing.
- When ISO_URL is set to a 'file://' path, a symlink is created in '.cache'.
The 'file "${ISO_PATH}"' command was resolving the symlink itself, which
interfered with sed processing.
- Replaced 'file "${ISO_PATH}"' with 'file -L "${ISO_PATH}"' to follow
symlinks and ensure consistent behavior.
Signed-off-by: DK <d.koch@accenture.com>
0 commit comments