Skip to content

Commit

Permalink
use default shell on system
Browse files Browse the repository at this point in the history
  • Loading branch information
kumiDa committed Apr 29, 2021
1 parent 783fc90 commit d4b486f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion riot/riot.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

logger = logging.getLogger(__name__)

SHELL = "/bin/bash"
SHELL = os.getenv("SHELL", "/bin/bash")
ENCODING = sys.getdefaultencoding()


Expand Down

0 comments on commit d4b486f

Please sign in to comment.