| commit | d7d5667ee9e898cc0938279e3cebe9abaf4b1e90 |
| parent | 09956afb55 |
| author | Lucas Galante <[email protected]> |
| date | 2026-06-25 15:00 |
Fix target directory path in install command
Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 74c4180..22f9fd1 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ build: install: build mkdir -p ~/.local/bin - install -m 755 target/release/cce-graph ~/.local/bin/cce-graph + install -m 755 ../target/release/cce-graph ~/.local/bin/cce-graph run: cargo run