Skip to content

Commit

Permalink
Fixed inverted if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntRanch committed Mar 8, 2024
1 parent aad7e06 commit 52a3c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ bool TaurBackend::update_all_pkgs(path cacheDir, bool useGit) {

std::cout << "Upgraded " << updatedPkgs << "/" << attemptedDownloads << " packages." << std::endl;

if (attemptedDownloads < updatedPkgs)
if (attemptedDownloads > updatedPkgs)
std::cout << "Some packages failed to download, Please redo this command and log the issue." << std::endl << "If it is an issue with TabAUR, feel free to open an issue in GitHub." << std::endl;

return true;
Expand Down

0 comments on commit 52a3c1a

Please sign in to comment.