git.lucas.co / cce-graph
node-based graph editor
git clone https://git.lucas.co/cce-graph.git

commitd7d5667ee9e898cc0938279e3cebe9abaf4b1e90
parent09956afb55
authorLucas Galante <[email protected]>
date2026-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