Do not hardcode path to bash (#332)

This commit is contained in:
Timo Kaufmann
2019-06-10 20:10:28 +03:00
committed by Gal Novik
parent a1bb8eef89
commit 8df3c46756
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ class EKSHandler():
container = client.V1Container(
name=self.test_name,
image=self.image,
command=['/bin/bash', '-c'],
command=['bash', '-c'],
args=[self.test_command],
image_pull_policy='Always',
working_dir=self.working_dir,