From bc5bc17667331117c6693444da6346bf47bd5852 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Sun, 4 Nov 2018 01:50:30 +0900 Subject: [PATCH] Support *nix like development prompt on Windows CMD on windows could support customized prompt like $PS1 on bash --- gst-uninstalled.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gst-uninstalled.py b/gst-uninstalled.py index 48ae015ffc..48f66372db 100755 --- a/gst-uninstalled.py +++ b/gst-uninstalled.py @@ -203,6 +203,7 @@ if __name__ == "__main__": if not args: if os.name is 'nt': args = [os.environ.get("COMSPEC", r"C:\WINDOWS\system32\cmd.exe")] + args += ['/k', 'prompt [gst-{}] $P$G'.format(gst_version)] else: args = [os.environ.get("SHELL", os.path.realpath("/bin/sh"))] if "bash" in args[0]: