target Fedora-Everything ISO

This commit is contained in:
Lukas Greve
2026-02-15 19:28:58 +01:00
parent 2e6b0d8498
commit 570d355f1f
+1 -1
View File
@@ -12,7 +12,7 @@ find_fedora_iso() {
# Check if directory exists # Check if directory exists
if [ -d "$iso_dir" ]; then if [ -d "$iso_dir" ]; then
# Find the first Fedora-Everything*.iso file # Find the first Fedora-Everything*.iso file
fedora_iso=$(find "$iso_dir" -maxdepth 1 -name "Fedora-Server*.iso" -type f | head -n 1) fedora_iso=$(find "$iso_dir" -maxdepth 1 -name "Fedora-Everything*.iso" -type f | head -n 1)
# If found, return the full path # If found, return the full path
if [ -n "$fedora_iso" ] && [ -f "$fedora_iso" ]; then if [ -n "$fedora_iso" ] && [ -f "$fedora_iso" ]; then