From 5031522b3c762bbcb1174a3cdcc8c601e6e07823 Mon Sep 17 00:00:00 2001 From: ongkhaiwei Date: Tue, 10 Jan 2023 23:15:13 +0800 Subject: [PATCH] remove quote from --privateKey --- lib/ansible.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible.js b/lib/ansible.js index 4bb7e87..a71665e 100644 --- a/lib/ansible.js +++ b/lib/ansible.js @@ -117,7 +117,7 @@ AbstractAnsibleCommand.prototype.addParamValue = function(commandParams, value, AbstractAnsibleCommand.prototype.addPathParam = function(commandParams, param, flag) { if (this.config[param]) { - return this.addParamValue(commandParams, '"' + this.config[param] + '"', flag); + return this.addParamValue(commandParams, this.config[param], flag); } return commandParams; };