diff options
Diffstat (limited to 'nix/bufCheck')
-rw-r--r-- | nix/bufCheck/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/bufCheck/default.nix b/nix/bufCheck/default.nix index 6d17cb460ecf..7613d9215b69 100644 --- a/nix/bufCheck/default.nix +++ b/nix/bufCheck/default.nix @@ -3,7 +3,7 @@ { depot, pkgs, ... }: pkgs.writeShellScriptBin "ci-buf-check" '' - ${depot.third_party.bufbuild}/bin/buf check lint --input "${depot.depotPath}" + ${depot.third_party.bufbuild}/bin/buf check lint --input "${depot.path}" # Report-only - ${depot.third_party.bufbuild}/bin/buf check breaking --input "${depot.depotPath}" --against-input "${depot.depotPath}/.git#branch=canon" || true + ${depot.third_party.bufbuild}/bin/buf check breaking --input "${depot.path}" --against-input "${depot.path}/.git#branch=canon" || true '' |