Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If using saws from bash, then use the same shell when invoking commands. #102

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion saws/saws.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def _process_command(self, text):
if not self._handle_cd(text):
text = self._colorize_output(text)
# Pass the command onto the shell so aws-cli can execute it
subprocess.call(text, shell=True)
subprocess.call(text, shell=True, executable=os.getenv("SHELL", "/bin/sh"))
print('')
except KeyboardInterrupt as e:
self._handle_keyboard_interrupt(e, platform.system())
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'awscli>=1.7.46,<2.0.0',
'click>=4.0,<7.0',
'configobj>=5.0.6,<6.0.0',
'prompt-toolkit>=1.0.0,<1.1.0',
'prompt-toolkit>=1.0.0',
'six>=1.9.0,<2.0.0',
'pygments>=2.0.2,<3.0.0'
]
Expand Down