From a69e3ca7dc378e520a5863269e2e186d954c7eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 15 Jul 2023 09:02:27 +0200 Subject: [PATCH] drop git commit from update-vendor-hash.sh --- scripts/update-vendor-hash.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scripts/update-vendor-hash.sh b/scripts/update-vendor-hash.sh index e5369b9..4cd02a7 100755 --- a/scripts/update-vendor-hash.sh +++ b/scripts/update-vendor-hash.sh @@ -7,11 +7,3 @@ failedbuild=$(nix build --impure --expr '(with import {}; pkgs.callPac echo "$failedbuild" checksum=$(echo "$failedbuild" | awk '/got:.*sha256/ { print $2 }') sed -i -e "s|vendorHash ? \".*\"|vendorHash ? \"$checksum\"|" default.nix - -# git push if we have a diff -if [[ -n $(git diff) ]]; then - git add default.nix - git commit -m "sops-install-secrets: update checksum to $checksum" - git push -fi -