jenkins-x-buildpacks / jenkins-x-classic

Classic Build Pack for libraries (CI + Release but no CD) for releasing Java, Maven, Gradle, NPM modules but without deploying on any specific cloud or infrastructure
Apache License 2.0
16 stars 46 forks source link

Rust buildpack cargo install needs to be updated #18

Open sstubbs opened 4 years ago

sstubbs commented 4 years ago

I'm getting the following error when using the rust buildpack

error: Using `cargo install` to install the binaries for the package in current working directory is no longer supported, use `cargo install --path .` instead. Use `cargo build` if you want to simply build the package.

so the cargo install command needs to be updated to cargo install --path . or cargo build.