Skip to content

Commit a215dff

Browse files
committed
fix discord
1 parent c4a86ca commit a215dff

3 files changed

Lines changed: 1 addition & 13 deletions

File tree

src/core/script_template.sh

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,6 @@ backup_file() {
113113
fi
114114
}
115115

116-
# always unmask packagekit if the program exits for any reason
117-
unmask_packagekit() {
118-
systemctl unmask packagekit || true
119-
}
120-
121116
clear
122117
# banner generated from the Pagga figlet font (this is exactly 80 chars wide)
123118
echo ""
@@ -140,11 +135,6 @@ color_echo "yellow" "Don't run this script if you didn't build it yourself or do
140135
echo ""
141136
read -r -p "Press Enter to continue or CTRL+C to cancel..."
142137

143-
color_echo "blue" "Disabling PackageKit temporarily to prevent RPM lock collisions..."
144-
systemctl stop packagekit || true
145-
systemctl mask packagekit || true
146-
trap unmask_packagekit EXIT
147-
148138
color_echo "blue" "Performing system upgrade... This may take a while..."
149139
dnf upgrade -y
150140

src/plugins/additional-apps/browsers/install-app-chrome.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ const plugin = createPlugin({
2727
}
2828

2929
return `
30-
rpm --import https://dl.google.com/linux/linux_signing_key.pub
31-
3230
if command -v dnf4 &>/dev/null; then
3331
dnf4 config-manager --set-enabled google-chrome
3432
else

src/plugins/additional-apps/im/install-app-discord.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const plugin = createPlugin({
2020
label: 'Choose Discord installation type:',
2121
},
2222
},
23-
dependencies: ['remove-fedora-flatpak-repos'],
23+
dependencies: ['remove-fedora-flatpak-repos', 'enable-rpmfusion'],
2424
generate: (config) => {
2525
if (config.source === 'flatpak') {
2626
return 'flatpak install -y flathub com.discordapp.Discord'

0 commit comments

Comments
 (0)