From 3a0c82f8fca90bab259941239dc84ba161d77c59 Mon Sep 17 00:00:00 2001 From: maralorn Date: Mon, 6 Feb 2023 04:53:44 +0100 Subject: [PATCH] Fix bump script --- nixos/roles/laminar/bump-config.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/roles/laminar/bump-config.hs b/nixos/roles/laminar/bump-config.hs index ba502a40..fc511bf1 100644 --- a/nixos/roles/laminar/bump-config.hs +++ b/nixos/roles/laminar/bump-config.hs @@ -35,7 +35,7 @@ main = do git "config" "user.email" "maralorn@maralorn.de" git "config" "user.name" "maralorn (nix-auto-updater)" setEnv "PATH" . toString $ Text.intercalate ":" paths - ignoreFailure $ nix "flake" "update" "--commit-lock-file" "--commit-lockfile-summary" + ignoreFailure $ nix "flake" "update" "--commit-lock-file" changed <- LBS.null <$> (git "branch" "-r" "--contains" "HEAD" |> captureTrim) if changed then git "push" "-f" "origin" "HEAD:flake-lock-update"