diff --git a/fedora/fedora-full.sh b/fedora/fedora-full.sh index 0c60777..b4ce0c6 100755 --- a/fedora/fedora-full.sh +++ b/fedora/fedora-full.sh @@ -1,9 +1,6 @@ #!/bin/bash set -euo pipefail -# Source parent definitions (adjust path if needed) -source "$(dirname "$0")/../main_script.sh" - # Map the exported variables to your local names with fallbacks to satisfy set -u OS="${DETECTED_OS:-fedora}" DE="${SELECTED_DE:-none}" diff --git a/fedora/fedora-minimal.sh b/fedora/fedora-minimal.sh index fd5d730..a579616 100755 --- a/fedora/fedora-minimal.sh +++ b/fedora/fedora-minimal.sh @@ -1,9 +1,6 @@ #!/bin/bash set -euo pipefail -# Source parent definitions (adjust path if needed) -source "$(dirname "$0")/../main_script.sh" - # Map the exported variables to your local names with fallbacks to satisfy set -u OS="${DETECTED_OS:-fedora}" DE="${SELECTED_DE:-none}" diff --git a/fedora/fedora-xfce.sh b/fedora/fedora-xfce.sh index 437cbdd..5667cda 100755 --- a/fedora/fedora-xfce.sh +++ b/fedora/fedora-xfce.sh @@ -1,9 +1,6 @@ #!/bin/bash set -euo pipefail -# Source parent definitions (adjust path if needed) -source "$(dirname "$0")/../main_script.sh" - # Map the exported variables to your local names with fallbacks to satisfy set -u OS="${DETECTED_OS:-fedora}" DE="${SELECTED_DE:-xfce}"