Skip to content

Commit

Permalink
Fixed upgrade_pkg xbps bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Engler committed Oct 5, 2018
1 parent c22f38c commit 713abd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/update.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ int upgrade_pkg(string packagemanager, string package) {
}

else if(packagemanager == "xbps") {
cmd = "xbps-install -S " + package;
cmd = "xbps-install -u " + package;
system(cmd.c_str());
}

Expand Down

0 comments on commit 713abd5

Please sign in to comment.