From 79961c36a2922ac5bc35cc9f5615a743985a0706 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Wed, 12 Jun 2019 18:43:46 +0200 Subject: [PATCH] circleci doc builder: write ssh known_hosts in $HOME, not in . --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2c11cd9493..29fd4c973e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,7 +37,7 @@ commands: description: Add ssh known_hosts fingerprints steps: - run: - command: mkdir -p $HOME/.ssh && echo "${DOCS_HOST} ${DOCS_FINGERPRINT}" > .ssh/known_hosts + command: mkdir -p $HOME/.ssh && echo "${DOCS_HOST} ${DOCS_FINGERPRINT}" > $HOME/.ssh/known_hosts auth-regress-setup: description: Prepare the environment for auth regression tests -- 2.47.2