diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 10:31:30 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 10:33:37 +0300 |
commit | 3ba57f19aeac633c0e62869812d6285589708fb4 (patch) | |
tree | 967b98e58804b22e52d9eade6e4b8b8762fb5474 /.ci | |
parent | test: add homepage URL tests (diff) | |
download | cgitize-3ba57f19aeac633c0e62869812d6285589708fb4.tar.gz cgitize-3ba57f19aeac633c0e62869812d6285589708fb4.zip |
.ci/docker: make ssh-add use SSH_ASKPASS
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/docker/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/docker/test.sh b/.ci/docker/test.sh index 0ff9a35..7c76298 100755 --- a/.ci/docker/test.sh +++ b/.ci/docker/test.sh @@ -65,7 +65,7 @@ setup_ssh_agent() { echo_password="$( printf -- 'echo %q' "$password" )" echo "$echo_password" > "$askpass_path" - SSH_ASKPASS="$askpass_path" DISPLAY= ssh-add "$key" > /dev/null 2>&1 < /dev/null + SSH_ASKPASS="$askpass_path" SSH_ASKPASS_REQUIRE=force DISPLAY= ssh-add "$key" > /dev/null 2>&1 < /dev/null } docker_build() { |