Merge branch 's1as3r/master'
This commit is contained in:
commit
9593510bd4
2 changed files with 6 additions and 5 deletions
|
@ -42,10 +42,11 @@ class Shell(dotbot.Plugin):
|
||||||
else:
|
else:
|
||||||
cmd = item
|
cmd = item
|
||||||
msg = None
|
msg = None
|
||||||
if msg is None:
|
if quiet:
|
||||||
|
if msg is not None:
|
||||||
|
self._log.lowinfo("%s" % msg)
|
||||||
|
elif msg is None:
|
||||||
self._log.lowinfo(cmd)
|
self._log.lowinfo(cmd)
|
||||||
elif quiet:
|
|
||||||
self._log.lowinfo("%s" % msg)
|
|
||||||
else:
|
else:
|
||||||
self._log.lowinfo("%s [%s]" % (msg, cmd))
|
self._log.lowinfo("%s [%s]" % (msg, cmd))
|
||||||
stdout = options.get("stdout", stdout)
|
stdout = options.get("stdout", stdout)
|
||||||
|
|
|
@ -20,9 +20,9 @@ test_expect_success 'run 2' '
|
||||||
EOF
|
EOF
|
||||||
'
|
'
|
||||||
|
|
||||||
# when no description, expect to see command
|
# when no description, expect no output
|
||||||
test_expect_success 'run 3' '
|
test_expect_success 'run 3' '
|
||||||
(run_dotbot | grep "echo banana") <<EOF
|
(run_dotbot | (! grep "echo banana")) <<EOF
|
||||||
- shell:
|
- shell:
|
||||||
- command: echo banana
|
- command: echo banana
|
||||||
quiet: true
|
quiet: true
|
||||||
|
|
Loading…
Reference in a new issue