Skip to content
This repository has been archived by the owner on Jul 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #38 from Temelio/bad_cli_commands
Browse files Browse the repository at this point in the history
Fix missing cli changes
  • Loading branch information
achaussier committed Mar 16, 2016
2 parents a684ca2 + 181febd commit 28c2907
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/remove_jenkins_credentials.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def main():
basename(__file__))

rc, stdout, stderr = module.run_command(
"java -jar %s -s '%s' groovy %s '%s'" %
"java -jar %s -s '%s' -i '%s' groovy %s '%s'" %
(module.params['cli_path'], module.params['url'],
module.params['deployment_ssh_key'], script,
module.params['credentials_domain']))
Expand Down
2 changes: 1 addition & 1 deletion library/remove_jenkins_debian_package_builder_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def main():
basename(__file__))

rc, stdout, stderr = module.run_command(
"java -jar %s -s '%s' groovy %s '%s'" %
"java -jar %s -s '%s' -i '%s' groovy %s '%s'" %
(module.params['cli_path'], module.params['url'],
module.params['deployment_ssh_key'], script,
json.dumps(module.params)))
Expand Down
2 changes: 1 addition & 1 deletion library/remove_jenkins_github_servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def main():
basename(__file__))

rc, stdout, stderr = module.run_command(
"java -jar %s -s '%s' groovy %s '%s'" %
"java -jar %s -s '%s' -i '%s' groovy %s '%s'" %
(module.params['cli_path'], module.params['url'],
module.params['deployment_ssh_key'], script,
json.dumps(module.params)))
Expand Down

0 comments on commit 28c2907

Please sign in to comment.