Build: fix bundle bin path in bundler task

follow-up on d65f78728b

Fixes #11381
This commit is contained in:
Karol Bucek 2019-12-03 10:44:32 +01:00
parent 1b995d7d96
commit ba51feea21

View file

@ -124,7 +124,7 @@ def assemblyDeps = [downloadAndInstallJRuby, assemble] + subprojects.collect {
}
task installBundler(dependsOn: assemblyDeps) {
outputs.files file("${projectDir}/vendor/bundle/bin/bundle")
outputs.files file("${projectDir}/vendor/bundle/jruby/2.5.0/bin/bundle")
doLast {
gem(projectDir, buildDir, "bundler", "1.17.3", "${projectDir}/vendor/bundle/jruby/2.5.0")
}