Reputation: 36856
I have installed trunk cargo pkg globally, but there was a bug that is fixed in master but not released yet on crates.
Is there a way to install/update my trunk from github source?
Upvotes: 3
Views: 1437
Reputation: 125865
cargo install
accepts a --git
command line option:
cargo install --git https://github.com/thedodd/trunk.git trunk
Upvotes: 6