[libcxx-commits] [libcxx] [libc++] Use python3 in ssh.py's shebang (PR #183491)

Lucas Chollet via libcxx-commits libcxx-commits at lists.llvm.org
Sat Mar 7 00:38:25 PST 2026


https://github.com/LucasChollet updated https://github.com/llvm/llvm-project/pull/183491

>From aa1d55d3042675373dde3ec27ae24c0a7a4928dc Mon Sep 17 00:00:00 2001
From: Lucas Chollet <lucas.chollet at free.fr>
Date: Thu, 26 Feb 2026 11:34:50 +0100
Subject: [PATCH] [libc++] Use python3 in ssh.py's shebang

This allows the script to be executed on distributions that only provide
a `python3` executable, like Debian and its derivatives.
---
 libcxx/utils/ssh.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcxx/utils/ssh.py b/libcxx/utils/ssh.py
index 77e79ce3d71fb..65041757e54ac 100755
--- a/libcxx/utils/ssh.py
+++ b/libcxx/utils/ssh.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # ===----------------------------------------------------------------------===##
 #
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.



More information about the libcxx-commits mailing list