Don't except if nix flake update fails

This commit is contained in:
Graham Christensen 2025-05-13 09:27:39 -04:00
parent 743a8831c3
commit dcd2ee07ca
3 changed files with 4 additions and 2 deletions

View file

@ -54,6 +54,7 @@ class UpdateFlakeLockAction extends DetSysAction {
const execOptions: actionsExec.ExecOptions = {
cwd: this.pathToFlakeDir !== null ? this.pathToFlakeDir : undefined,
ignoreReturnCode: true,
};
const exitCode = await actionsExec.exec("nix", nixCommandArgs, execOptions);