topheman / snake-pipe-rust

🦀 A snake game based on stdin/stdout (+tcp and unix sockets) in rust
MIT License
12 stars 1 forks source link

fix: test shell completions without alias #60

Closed topheman closed 7 months ago

topheman commented 7 months ago

On my ~/.zshrc, I have a line like this:

export PATH="/Users/tophe/projects/snake-pipe-rust/target/debug:$PATH"

Which lets me use the debug version of snakepipe directly, without having to explicitly using ./target/debug/snakepipe.

As a contributor, it shouldn't be mandatory to change any of your global configuration files to develop on this project.

This PR fixes the scripts/test-zsh-completions which refers directly to snakepipe when it should refer to ./target/debug/snakepipe - everything else is already taken care of.