fix:non-breaking space (U+00A0) installation error

This commit is contained in:
shashankvivek
2025-07-20 15:12:58 +02:00
parent fff298b4cd
commit 5e19d21262

View File

@@ -203,14 +203,14 @@ def main() -> int:
operations = register_operation_parsers(subparsers, global_parser)
args = parser.parse_args()
# === PATCH to fix install_dir mismatch for Microsoft account ===
 
        actual_home = Path.home()
actual_home = Path.home()
        # If SuperClaude thinks install_dir is not your real user folder, correct it
        if args.install_dir and not str(args.install_dir).startswith(str(actual_home)):
            print(f"[INFO] Overriding incorrect install path: {args.install_dir}{actual_home}")
            args.install_dir = actual_home
        # === END PATCH ===
# If SuperClaude thinks install_dir is not your real user folder, correct it
if args.install_dir and not str(args.install_dir).startswith(str(actual_home)):
print(f"[INFO] Overriding incorrect install path: {args.install_dir}{actual_home}")
args.install_dir = actual_home
# === END PATCH ===
# No operation provided? Show help manually unless in quiet mode
if not args.operation: