diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-10T20·37+0300 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-12-10T20·37+0300 |
commit | aa5bf312e850fea20bd05187dc29f79c39501e25 (patch) | |
tree | 9a6cf7ba8d1fa2f8bb85d1a05eb040799a208771 /ops | |
parent | 2f1c654c1466b8fe3875de2babd23aac8c9a5625 (diff) |
fix(tvl-buildkite): Use supported credential helper binary name r/3204
Git only allows binary names prefixed with `git-credential-` if the path to the helper is not absolute. Why? Who knows. Change-Id: I216b2a621f62a73f05e21def7ec8016b29ede892
Diffstat (limited to 'ops')
-rw-r--r-- | ops/modules/tvl-buildkite.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/tvl-buildkite.nix b/ops/modules/tvl-buildkite.nix index fc0f45b8c029..20f8d3bbe492 100644 --- a/ops/modules/tvl-buildkite.nix +++ b/ops/modules/tvl-buildkite.nix @@ -18,7 +18,7 @@ let ln -s ${besadiiWithConfig "post-command"} $out/bin/post-command ''; - credentialHelper = pkgs.writeShellScriptBin "gerrit-creds" '' + credentialHelper = pkgs.writeShellScriptBin "git-credential-gerrit-creds" '' echo 'username=buildkite' echo "password=$(jq -r '.gerritPassword' /run/agenix/buildkite-besadii-config)" ''; |