From 41bc4e52f52c98c1064631838f88ade12ed30683 Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Fri, 11 Jul 2025 22:57:10 -0400 Subject: [PATCH] Fix doctor command to check for correct CLI script path - Change doctor command check from 'bin/tito.py' to 'bin/tito' - The actual CLI script is 'bin/tito' (without .py extension) - Doctor command now correctly shows CLI script as found instead of missing - Resolves false positive error in environment diagnosis --- tito/commands/doctor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tito/commands/doctor.py b/tito/commands/doctor.py index 3a69cc8a..7909bbfd 100644 --- a/tito/commands/doctor.py +++ b/tito/commands/doctor.py @@ -83,7 +83,7 @@ class DoctorCommand(BaseCommand): ('tinytorch/', 'Package directory'), ('tinytorch/core/', 'Core module directory'), ('modules/', 'Module directory'), - ('bin/tito.py', 'CLI script'), + ('bin/tito', 'CLI script'), ('requirements.txt', 'Dependencies file') ]