From ed3a49a8279b8e833c58b5c46cd2c6291e8e9df4 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Sat, 11 Aug 2018 13:12:33 -0400 Subject: [PATCH] Fix crl file copying Old syntax copied the container crl directory into the local crl directory as a subdir, resulting in the content being in ./crl/crl/ --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8071ea06..27b95c6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ script: - docker run -d --entrypoint='/bin/sh' -t --name current-atst-tester "${TESTER_IMAGE1_NAME}" - docker container exec -t current-atst-tester script/sync-crls - docker commit current-atst-tester "${TESTER_IMAGE2_NAME}" - - docker cp current-atst-tester:/opt/atat/atst/crl ./crl + - docker cp current-atst-tester:/opt/atat/atst/crl/* ./crl/ - docker container stop current-atst-tester - docker run --add-host "postgreshost:${postgres_ip}" --add-host "redishost:${redis_ip}" "${TESTER_IMAGE2_NAME}"