We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fb8cb90 + 4808ea9 commit 1190625Copy full SHA for 1190625
1 file changed
client/deis.py
@@ -600,7 +600,9 @@ def apps_run(self, args):
600
601
Usage: deis apps:run <command>...
602
"""
603
- app = self._session.app
+ app = args.get('--app')
604
+ if not app:
605
+ app = self._session.app
606
body = {'command': ' '.join(sys.argv[2:])}
607
response = self._dispatch('post',
608
"/api/apps/{}/run".format(app),
0 commit comments