Skip to content

Commit

Permalink
Allow things to continue if compilation fails
Browse files Browse the repository at this point in the history
  • Loading branch information
mtorpey committed Aug 30, 2024
1 parent 641fc55 commit 4c201a8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion gap/PackageManager.gi
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,12 @@ function(name, interactive...)
for line in SplitString(pull.output, "\n") do
Info(InfoPackageManager, 3, vc.cmd, ": ", line);
od;
return (pull.code = 0) and PKGMAN_CompileDir(dir);
if pull.code = 0 then
PKGMAN_CompileDir(dir);
return true;
else
return false;
fi;
else
Info(InfoPackageManager, 1,
"Uncommitted changes in ", vc.cmd, " repository");
Expand Down

0 comments on commit 4c201a8

Please sign in to comment.