From 36c3d3397b86db5dad28ec9fc8b337f931c11ddc Mon Sep 17 00:00:00 2001 From: Ryan Mulligan <ryan@ryantm.com> Date: Tue, 13 Oct 2020 20:27:48 -0700 Subject: [PATCH] if nixpkgs-update fails for some reason, keep going --- build01/nixpkgs-update.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build01/nixpkgs-update.nix b/build01/nixpkgs-update.nix index d2db5c5..6f68db1 100644 --- a/build01/nixpkgs-update.nix +++ b/build01/nixpkgs-update.nix @@ -59,10 +59,10 @@ in ${nixpkgs-update-bin} delete-done --delete grep -rl $XDG_CACHE_HOME/nixpkgs -e buildPython | grep default | \ ${nixpkgs-update-pypi-releases} --nixpkgs=/var/cache/nixpkgs-update/nixpkgs > /var/lib/nixpkgs-update/packages-to-update.txt - ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review + ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review || true ${nixpkgs-update-bin} delete-done --delete ${nixpkgs-update-github-releases} > /var/lib/nixpkgs-update/packages-to-update.txt - ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review + ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review || true ${nixpkgs-update-bin} delete-done --delete ${nixpkgs-update-bin} fetch-repology > /var/lib/nixpkgs-update/packages-to-update.txt ${nixpkgs-update-bin} update-list --pr --cve --outpaths --nixpkgs-review