diff --git a/src/bin/reprofed-apply.sh b/src/bin/reprofed-apply.sh index 46cd301..0e85809 100755 --- a/src/bin/reprofed-apply.sh +++ b/src/bin/reprofed-apply.sh @@ -54,19 +54,19 @@ if ! DISTRO_VERSION_ID="$DISTRO_VERSION_ID" \ fi if yq -e '.repos.rpmfusion.free == "true"' "$PROFILE_FILE"; then - source "$SCRIPT_DIR"/../core/install_rpmfusion-free.sh + source "$SCRIPT_DIR"/../core/enable_rpmfusion-free.sh fi if yq -e '.repos.rpmfusion.nonfree == "true"' "$PROFILE_FILE"; then - source "$SCRIPT_DIR"/../core/install_rpmfusion-nonfree.sh + source "$SCRIPT_DIR"/../core/enable_rpmfusion-nonfree.sh fi if yq -e '.repos.flathub == "true"' "$PROFILE_FILE"; then - source "$SCRIPT_DIR"/../core/install_flathub.sh + source "$SCRIPT_DIR"/../core/enable_flathub.sh fi if yq -e '.repos.vscode == "true"' "$PROFILE_FILE"; then - source "$SCRIPT_DIR"/../core/install_vscode.sh + source "$SCRIPT_DIR"/../core/enable_vscode.sh fi if ! curl -s --head --connect-timeout 5 https://www.google.com > /dev/null; then diff --git a/src/core/install_flathub.sh b/src/core/enable_flathub.sh similarity index 100% rename from src/core/install_flathub.sh rename to src/core/enable_flathub.sh diff --git a/src/core/install_rpmfusion-free.sh b/src/core/enable_rpmfusion-free.sh similarity index 100% rename from src/core/install_rpmfusion-free.sh rename to src/core/enable_rpmfusion-free.sh diff --git a/src/core/install_rpmfusion-nonfree.sh b/src/core/enable_rpmfusion-nonfree.sh similarity index 100% rename from src/core/install_rpmfusion-nonfree.sh rename to src/core/enable_rpmfusion-nonfree.sh diff --git a/src/core/install_vscode.sh b/src/core/enable_vscode.sh similarity index 100% rename from src/core/install_vscode.sh rename to src/core/enable_vscode.sh