Code Review
/
releng
/
lftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
051b548
)
Print result of groovy script to console
57/11157/1
author
Thanh Ha
<thanh.ha@linuxfoundation.org>
Sun, 10 Jun 2018 23:16:42 +0000
(19:16 -0400)
committer
Thanh Ha
<thanh.ha@linuxfoundation.org>
Sun, 10 Jun 2018 23:16:42 +0000
(19:16 -0400)
Change-Id: I84824c34c8d13df55a40b8409a9174055ab8e5a9
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
lftools/cli/jenkins/__init__.py
patch
|
blob
|
history
diff --git
a/lftools/cli/jenkins/__init__.py
b/lftools/cli/jenkins/__init__.py
index
f9cbf4d
..
698ec13
100644
(file)
--- a/
lftools/cli/jenkins/__init__.py
+++ b/
lftools/cli/jenkins/__init__.py
@@
-45,7
+45,8
@@
def groovy(ctx, groovy_file):
data = f.read()
server = ctx.obj['server']
- server.run_script(data)
+ result = server.run_script(data)
+ print(result)
@click.command()