From f99f8882c548049e43b30553528d60461d8607fd Mon Sep 17 00:00:00 2001 From: fastium Date: Sat, 6 Jun 2026 22:17:12 +0200 Subject: [PATCH] chore(MP/cli): update justfile --- src/06-mini-project/cli/justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/06-mini-project/cli/justfile b/src/06-mini-project/cli/justfile index 137ab76..e70a175 100644 --- a/src/06-mini-project/cli/justfile +++ b/src/06-mini-project/cli/justfile @@ -4,11 +4,11 @@ @build: make -@install: build - install -d /rootfs/usr/bin +@install: install -m 0755 mp /rootfs/usr/bin/mp echo "temp_cli installed successfully in /rootfs/usr/bin/" @clean: make clean rm -f -- mp + rm -f /rootfs/usr/bin/mp