c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
13 lines
385 B
Nix
13 lines
385 B
Nix
# Utility script to run a gerrit command on the depot host via ssh.
|
|
# Reads the username from TVL_USERNAME, or defaults to $(whoami)
|
|
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellScriptBin "gerrit" ''
|
|
TVL_USERNAME=''${TVL_USERNAME:-$(whoami)}
|
|
if which ssh &>/dev/null; then
|
|
ssh=ssh
|
|
else
|
|
ssh="${pkgs.openssh}/bin/ssh"
|
|
fi
|
|
exec $ssh $TVL_USERNAME@code.tvl.fyi -p 29418 -- gerrit $@
|
|
''
|