From 050f5b407620b3c54ab6c5981ce21d7fe4629afd Mon Sep 17 00:00:00 2001 From: leventbesli Date: Sun, 6 Oct 2024 14:04:21 +0300 Subject: [PATCH] formatting improvement Co-authored-by: Adam Perkowski --- .../fedora/fedora-btrfs-assistant.sh | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/core/tabs/system-setup/fedora/fedora-btrfs-assistant.sh b/core/tabs/system-setup/fedora/fedora-btrfs-assistant.sh index 0a65f56e..4af62e21 100644 --- a/core/tabs/system-setup/fedora/fedora-btrfs-assistant.sh +++ b/core/tabs/system-setup/fedora/fedora-btrfs-assistant.sh @@ -18,18 +18,18 @@ checkFs() { # Install Btrfs-Assistant/snapper and dependencies installBtrfsStack() { if ! command_exists btrfs-assistant; then - printf "%b\n" "${YELLOW}==========================================${RC}" - printf "%b\n" "${YELLOW}Installing Btrfs Assistant with snapper...${RC}" - printf "%b\n" "${YELLOW}==========================================${RC}" - case "$PACKAGER" in - dnf) - "$ESCALATION_TOOL" "$PACKAGER" install -y btrfs-assistant python3-dnf-plugin-snapper - ;; + printf "%b\n" "${YELLOW}==========================================${RC}" + printf "%b\n" "${YELLOW}Installing Btrfs Assistant with snapper...${RC}" + printf "%b\n" "${YELLOW}==========================================${RC}" + case "$PACKAGER" in + dnf) + "$ESCALATION_TOOL" "$PACKAGER" install -y btrfs-assistant python3-dnf-plugin-snapper + ;; *) - printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}" - exit 1 - ;; - esac + printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}" + exit 1 + ;; + esac else printf "%b\n" "${GREEN}Btrfs Assistant is already installed.${RC}" fi