Skip to content

Commit

Permalink
fix(default-flatpaks): Check for Fedora testing repo
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftydinar authored Oct 14, 2024
1 parent 40f5104 commit ed67139
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/default-flatpaks/v1/system-flatpak-setup
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if "${fedora_system}"; then
else
echo "System flatpak remote 'fedora' is already removed"
fi
if "${fedora_system_testing}"; then
if "${fedora_testing_system}"; then
echo "Removing system flatpak remote 'fedora-testing'"
flatpak remote-delete --system fedora-testing --force
else
Expand Down
2 changes: 1 addition & 1 deletion modules/default-flatpaks/v1/user-flatpak-setup
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if "${fedora_user}"; then
else
echo "User flatpak remote 'fedora' is already removed"
fi
if "${fedora_system_testing}"; then
if "${fedora_testing_user}"; then
echo "Removing flatpak remote 'fedora-testing'"
flatpak remote-delete --user fedora-testing --force
else
Expand Down

0 comments on commit ed67139

Please sign in to comment.