Skip to content

Commit

Permalink
Fix quote marks
Browse files Browse the repository at this point in the history
  • Loading branch information
mtorpey committed Sep 9, 2024
1 parent 7b0b68d commit 89616bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gap/distro.gi
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function(name, args...)
Info(InfoPackageManager, 2, "The newest version of package \"", name, "\" is already installed");
return PKGMAN_CheckPackage(current.InstallationPath);
elif CompareVersionNumbers(newest.Version, current.Version) then
q := "Package \"{}\" version '{}' is installed, but {} is available. Install it?";
q := "Package \"{}\" version {} is installed, but {} is available. Install it?";
q := StringFormatted(q, name, current.Version, newest.Version);
if interactive and PKGMAN_AskYesNoQuestion(q : default := false) then
return UpdatePackage(name, interactive);
Expand Down

0 comments on commit 89616bd

Please sign in to comment.