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/
This commit is contained in:
Devon Mackay 2018-08-11 13:12:33 -04:00
parent 6f1cd6276d
commit ed3a49a827

View File

@ -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}"