mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 06:31:23 -07:00
Use self.args when we parse arguments that way the arguments can be constructed manually
This commit is contained in:
parent
a8e015cc22
commit
4d637e5780
6 changed files with 6 additions and 6 deletions
|
@ -90,7 +90,7 @@ class PullCLI(CLI):
|
|||
help='verify GPG signature of checked out commit, if it fails abort running the playbook.'
|
||||
' This needs the corresponding VCS module to support such an operation')
|
||||
|
||||
self.options, self.args = self.parser.parse_args()
|
||||
self.options, self.args = self.parser.parse_args(self.args[1:])
|
||||
|
||||
if not self.options.dest:
|
||||
hostname = socket.getfqdn()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue