ZiiMakc
ZiiMakc

Reputation: 36856

Install/update globally from github source instead of crates.io

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

Answers (1)

eggyal
eggyal

Reputation: 125865

cargo install accepts a --git command line option:

cargo install --git https://github.com/thedodd/trunk.git trunk

Upvotes: 6

Related Questions