mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make a more logical error when the command/shell module is used with no arguments.
This commit is contained in:
parent
d35e930f2e
commit
c93df29249
1 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,8 @@ def main():
|
|||
chdir = module.params['chdir']
|
||||
args = module.params['args']
|
||||
|
||||
if args.strip() == '':
|
||||
module.fail_json(msg="no command given")
|
||||
|
||||
if chdir:
|
||||
os.chdir(chdir)
|
||||
|
|
Loading…
Reference in a new issue