We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
deis run
git push
1 parent 36aae0e commit b59f28bCopy full SHA for b59f28b
1 file changed
api/tasks.py
@@ -53,6 +53,8 @@ def converge_node(node):
53
@task
54
def run_node(node, command):
55
output, rc = CM.run_node(node.flat(), command)
56
+ if rc != 0 and 'failed to setup the container' in output:
57
+ output = '\033[35mPlease run `git push deis master` first.\033[0m\n' + output
58
return output, rc
59
60
0 commit comments