From 76362374228fb9e4d72eb4358f4128ee04a28df3 Mon Sep 17 00:00:00 2001 From: Alexis Ksigzkiewicz <115569470+AlexisKGZ@users.noreply.github.com> Date: Tue, 12 Sep 2023 08:26:16 +0200 Subject: [PATCH] Update index.js --- dist/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 12ba07e..217e272 100644 --- a/dist/index.js +++ b/dist/index.js @@ -13224,7 +13224,8 @@ var fnInstallSFDX = function(){ execCommand.run('wget', ['https://developer.salesforce.com/media/salesforce-cli/sf/channels/stable/sf-linux-x64.tar.xz']); execCommand.run('mkdir', ['-p', 'sfdx-cli']); execCommand.run('tar', ['xJf', 'sf-linux-x64.tar.xz', '-C', 'sfdx-cli', '--strip-components', '1']); - execCommand.run('export', ['PATH=~/sfdx-cli/bin:$PATH']); + execCommand.run('export', ['PATH=sfdx-cli/bin:$PATH']); + execCommand.run('sf', ['--version']); core.info('=== SFDX cli installed ==='); };