From eb7fccf990290d520ceb81fd71b61837d2dda825 Mon Sep 17 00:00:00 2001 From: zackeryyy wang Date: Sat, 12 Jul 2025 22:11:16 +0800 Subject: [PATCH] fix: correct version extraction in Makefile status command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index faa8f78..5c1b75c 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ status: @echo "" @echo "📁 Project Info:" @echo " Directory: $(PWD)" - @echo " Version: $(shell grep '__version__' ai_shell/__init__.py | cut -d'\"' -f2)" + @echo " Version: $(shell grep '__version__' ai_shell/__init__.py | cut -d'"' -f2)" @echo "" @echo "🔧 Git Status:" @git status --short || echo " Not a git repository"