From af68ba8b83e2e1511437040f8f849076d0f144ba Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Fri, 8 Jul 2022 12:03:13 +0100 Subject: [PATCH] Fix update_flake_lock.py --- .github/workflows/update_flake_lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_flake_lock.py b/.github/workflows/update_flake_lock.py index 7bb57f6..2a4e6c6 100755 --- a/.github/workflows/update_flake_lock.py +++ b/.github/workflows/update_flake_lock.py @@ -53,7 +53,7 @@ class FlakeLock: def nix_flake_update(repo, flake_input): - check_call(["nix", "flake", "update", "--update-input", flake_input], cwd=repo) + check_call(["nix", "flake", "lock", "--update-input", flake_input], cwd=repo) def format_change(change: GitCommit, repo):