| commit | d0859c516d67d62bc25217949e87826f535a8540 |
| parent | 52e1b507f4 |
| author | Lucas Galante <[email protected]> |
| date | 2026-06-25 14:59 |
Fix target directory path in install command
Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f720f40..a12c80e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ build: install: build mkdir -p ~/.local/bin - install -m 755 target/release/cce-email ~/.local/bin/cce-email + install -m 755 ../target/release/cce-email ~/.local/bin/cce-email run: cargo run