From ca0e91eb6a4574a198b6e9d97289d6a8710e9930 Mon Sep 17 00:00:00 2001 From: maralorn Date: Mon, 6 Feb 2023 04:46:11 +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 16650058..ba502a40 100644 --- a/nixos/roles/laminar/bump-config.hs +++ b/nixos/roles/laminar/bump-config.hs @@ -31,9 +31,9 @@ paths = repo = "git@hera.m-0.eu:nixos-config" main = do + git "clone" repo "." git "config" "user.email" "maralorn@maralorn.de" git "config" "user.name" "maralorn (nix-auto-updater)" - git "clone" repo "." setEnv "PATH" . toString $ Text.intercalate ":" paths ignoreFailure $ nix "flake" "update" "--commit-lock-file" "--commit-lockfile-summary" changed <- LBS.null <$> (git "branch" "-r" "--contains" "HEAD" |> captureTrim)