build: correct bin name

Amolith created

Change summary

justfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

justfile 🔗

@@ -41,7 +41,7 @@ docs:
     go run ./internal/tools/docgen -out ./docs -format markdown -single llm-reference.md -exclude m
 
 build:
-    # Building formatted-commit
+    # Building nasin-pali
     CGO_ENABLED=0 GOOS={{GOOS}} GOARCH={{GOARCH}} go build -o np -ldflags "-s -w -X main.version={{VERSION}}"
 
 run *FLAGS:
@@ -55,8 +55,8 @@ pack:
 
 clean:
     # Removing build artifacts
-    rm -rf formatted-commit
+    rm -rf np
 
 clean-all:
     # Removing build artifacts and config.toml
-    rm -rf formatted-commit config.toml
+    rm -rf np config.toml