fix(flake): simplify preConfigure
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 7s
Mirror to GitHub / mirror (push) Failing after 3s
Tests / test (push) Successful in 21s

This commit is contained in:
ashisgreat22 2026-03-22 13:28:27 +00:00
parent 7969b724de
commit 0b381c001f

View file

@ -29,7 +29,7 @@
ldflags = [ "-s" "-w" ]; ldflags = [ "-s" "-w" ];
# Remove stale vendor directory before buildGoModule deletes it. # Remove stale vendor directory before buildGoModule deletes it.
preConfigure = "find vendor -type f -exec chmod 666 {} \; 2>/dev/null || true; rm -rf vendor 2>/dev/null || find vendor -delete 2>/dev/null || true"; preConfigure = "rm -rf vendor || true";
nativeCheckInputs = with pkgs; [ ]; nativeCheckInputs = with pkgs; [ ];