Compare commits

..

3 commits

Author SHA1 Message Date
Kroese
8471d296ea
fix: Formatting issues 2025-09-21 23:22:12 +02:00
Kroese
6470d19bc7
fix: Formatting issues 2025-09-21 23:15:06 +02:00
Kroese
425a661c93
revert: Simplify conditional checks 2025-09-21 23:11:56 +02:00
2 changed files with 10 additions and 10 deletions

View file

@ -452,11 +452,11 @@ getESD() {
winCatalog=$(getCatalog "$version" "url")
editionName=$(getCatalog "$version" "edition")
if [ -z "$file" || -z "$winCatalog" || -z "$editionName" ]; then
if [ -z "$file" ] || [ -z "$winCatalog" ] || [ -z "$editionName" ]; then
error "Invalid VERSION specified, value \"$version\" is not recognized!" && return 1
fi
local msg="Downloading product information from Microsoft server..."
local msg="Downloading product information..."
info "$msg" && html "$msg"
rm -rf "$dir"