Skip to content

Commit

Permalink
Merge pull request #4212 from joepvd/fix-camelk-sync
Browse files Browse the repository at this point in the history
Fix camel-k sync
  • Loading branch information
joepvd authored Aug 2, 2024
2 parents 0af0dda + 2172e5b commit 4dd1ad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jobs/build/camel-k_sync/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ node {

stage("Download artifacts") {
parallel (
"linux": { sh "curl -sLf ${params.LINUX_BINARIES_LOCATION} -o ${params.VERSION}/camel-k-client-${params.VERSION}-linux-64bit.tar.gz" }
"macos": { sh "curl -sLf ${params.MACOS_BINARIES_LOCATION} -o ${params.VERSION}/camel-k-client-${params.VERSION}-mac-64bit.tar.gz" }
"linux": { sh "curl -sLf ${params.LINUX_BINARIES_LOCATION} -o ${params.VERSION}/camel-k-client-${params.VERSION}-linux-64bit.tar.gz" },
"macos": { sh "curl -sLf ${params.MACOS_BINARIES_LOCATION} -o ${params.VERSION}/camel-k-client-${params.VERSION}-mac-64bit.tar.gz" },
"windows": { sh "curl -sLf ${params.WINDOWS_BINARIES_LOCATION} -o ${params.VERSION}/camel-k-client-${params.VERSION}-windows-64bit.tar.gz" }
)
}
Expand Down

0 comments on commit 4dd1ad7

Please sign in to comment.