BurntSushi / xsv

A fast CSV command line toolkit written in Rust.
The Unlicense
10.38k stars 323 forks source link

make release creates binary at wrong path #199

Open sunlite99 opened 4 years ago

sunlite99 commented 4 years ago

*Makefile snippet


release: cargo build --release mkdir -p ~/bin/bin cp ./target/release/xsv ~/bin/bin/xsv


~/bin should exist already.

Thus the installer should copy xsv to ~/bin To use ~/bin/bin, the sub directory must be added to the environment.