Skip to content

Commit 3cc68b2

Browse files
committed
Improve format in install-deps
1 parent 3b212c4 commit 3cc68b2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sdata/dist-arch/install-deps.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ install-yay(){
1616
# However, let's just keep it as references for other distros writing their `sdata/dist-<DISTRO_ID>/install-deps.sh`, if they need it.
1717
remove_deprecated_dependencies(){
1818
printf "${STY_CYAN}[$0]: Removing deprecated dependencies:${STY_RST}\n"
19-
for i in illogical-impulse-{microtex,pymyc-aur} hyprland-qtutils {quickshell,hyprutils,hyprpicker,hyprlang,hypridle,hyprland-qt-support,hyprland-qtutils,hyprlock,xdg-desktop-portal-hyprland,hyprcursor,hyprwayland-scanner,hyprland}-git;do try sudo pacman --noconfirm -Rdd $i;done
19+
local list=()
20+
list+=(illogical-impulse-{microtex,pymyc-aur})
21+
list+=(hyprland-qtutils)
22+
list+=({quickshell,hyprutils,hyprpicker,hyprlang,hypridle,hyprland-qt-support,hyprland-qtutils,hyprlock,xdg-desktop-portal-hyprland,hyprcursor,hyprwayland-scanner,hyprland}-git)
23+
for i in ${list[@]};do try sudo pacman --noconfirm -Rdd $i;done
2024
}
2125
implicitize_old_dependencies(){
2226
# Convert old dependencies to non explicit dependencies so that they can be orphaned if not in meta packages

0 commit comments

Comments
 (0)