From d4b486f60200c4e5f74a37b18599ef7f8d8150bb Mon Sep 17 00:00:00 2001 From: Rahul Kumaresan Date: Thu, 29 Apr 2021 21:58:31 +0530 Subject: [PATCH] use default shell on system --- riot/riot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riot/riot.py b/riot/riot.py index 366d84c..2643f6c 100644 --- a/riot/riot.py +++ b/riot/riot.py @@ -15,7 +15,7 @@ logger = logging.getLogger(__name__) -SHELL = "/bin/bash" +SHELL = os.getenv("SHELL", "/bin/bash") ENCODING = sys.getdefaultencoding()