From 7a9ca39341909b3b6be7ccb3ee29ca072f7ce8df Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 24 Dec 2017 09:22:13 +0100 Subject: [PATCH] added helper output --- aur.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aur.py b/aur.py index 361714c..e5fdaad 100644 --- a/aur.py +++ b/aur.py @@ -21,6 +21,7 @@ def upgrade(module, use): module.exit_json( changed=not (out == '' or 'there is nothing to do' in out or 'No AUR updates found' in out), msg='upgraded system', + helper_used=use, ) @@ -37,6 +38,7 @@ def install_packages(module, packages, use): module.exit_json( changed=changed_iter, msg='installed package', + helper_used=use, )