projects
/
tools
/
litmus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d66728b
)
Add shell=True to make sure that sdb does exist
author
Donghoon Shin
<dhs.shine@gmail.com>
Thu, 2 Feb 2017 03:58:30 +0000
(12:58 +0900)
committer
Donghoon Shin
<dhs.shine@gmail.com>
Thu, 2 Feb 2017 03:58:30 +0000
(12:58 +0900)
litmus/cmds/__init__.py
patch
|
blob
|
history
diff --git
a/litmus/cmds/__init__.py
b/litmus/cmds/__init__.py
index 6fa318332a292e94b922852500c045d42b83c9c7..f5b387b9cdfecf07be6970b145833d9e5a83b209 100644
(file)
--- a/
litmus/cmds/__init__.py
+++ b/
litmus/cmds/__init__.py
@@
-32,7
+32,7
@@
def load_project_list(projects):
def sdb_does_exist():
help_url = 'https://github.com/dhs-shine/litmus#prerequisite'
try:
- call('sdb version', timeout=10)
+ call('sdb version',
shell=True,
timeout=10)
except FileNotFoundError:
raise Exception('Please install sdb. Refer to {}'.format(help_url))
return