From 18b564d852fe23c5111de7631557b7c55eea046a Mon Sep 17 00:00:00 2001 From: Greg Harvey Date: Wed, 22 May 2024 19:13:26 +0200 Subject: [PATCH] Commenting ansible and python task lines for now. --- src/commands/provision.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/provision.ts b/src/commands/provision.ts index f9e68b9..a3730b0 100644 --- a/src/commands/provision.ts +++ b/src/commands/provision.ts @@ -72,8 +72,8 @@ export default class ProvisionCmd extends AnsibleCmd { cmd += ' --workspace ' + workspace cmd += ' --repo ' + repo cmd += ' --branch ce-dev --playbook ' + ansiblePath - cmd += ' --python-interpreter ' + this.ansiblePythonInterpreter - cmd += ' --ansible-path ' + this.ansibleBinaryPath + //cmd += ' --python-interpreter ' + this.ansiblePythonInterpreter + //cmd += ' --ansible-path ' + this.ansibleBinaryPath cmd += ' --ansible-extra-vars \'{"is_local":"true","_ce_dev_mkcert_base":"/home/ce-dev/.local/share/mkcert","ce_dev_host_platform":"' + this.config.platform + '"}\'' return cmd }