diff --git a/Jenkinsfile b/Jenkinsfile index 97e6292..807e8b2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,12 +26,11 @@ pipeline { } } steps { - sh 'mkdir roles/rproxy/files/certs' withFileParameter('rootca') { - sh 'mv ${rootca} roles/rproxy/files/certs/RootCA.crt' + sh 'mv ${rootca} roles/rproxy/files/RootCA.crt' } withFileParameter('rootca_key') { - sh 'mv ${rootca_key} roles/rproxy/files/certs/RootCA.key' + sh 'mv ${rootca_key} roles/rproxy/files/RootCA.key' } } }