Skip to content

Commit

Permalink
Update flattool
Browse files Browse the repository at this point in the history
Remove typo in the line that checks if flathub is added. That typo meant flathub would never be found.
  • Loading branch information
heliguy4599 authored Aug 13, 2023
1 parent 594a7fa commit a79967a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flattool
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ if [ "$asFirstRun" == "true" ]; then
echo # For a nice newline

# Adding flathub if its not found
hasFlathub=$(flatpak remotes | grep flathdub)
hasFlathub=$(flatpak remotes | grep flathub)
if [ -z "$hasFlathub" ]; then
answer=""
while [ -z "$answer" ]; do
Expand Down

0 comments on commit a79967a

Please sign in to comment.