From 06dca429e97e3101fea504d727c019f1e9385be1 Mon Sep 17 00:00:00 2001 From: Ashik K Date: Tue, 11 Apr 2023 00:35:01 +0200 Subject: [PATCH] warn that PowerShell support is experimental when using it --- smartsh.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/smartsh.py b/smartsh.py index f15722d..af86246 100755 --- a/smartsh.py +++ b/smartsh.py @@ -88,6 +88,8 @@ if is_in_teacher_mode == False and apioutput is not None: if colorize_output: print("\033[93m") if tune_for_powershell: + print("***** PowerShell support is experimental*****") + print("***** You may have better luck if you copy the command and paste it into a PowerShell window *****") os.system("powershell.exe -Command " + apioutput) else: os.system(apioutput)