We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a44e716 commit 899a2b7Copy full SHA for 899a2b7
index.js
@@ -11,7 +11,7 @@ try {
11
function installSFDX(){
12
var download = 'wget https://developer.salesforce.com/media/salesforce-cli/sfdx/channels/stable/sfdx-linux-x64.tar.xz -P /tmp'
13
var createDir = 'mkdir sfdx'
14
- var unzip = 'tar xJf /tmp/sfdx-linux-amd64.tar.xz -C sfdx --strip-components 1'
+ var unzip = 'tar xJf /tmp/sfdx-linux-x64.tar.xz -C sfdx --strip-components 1'
15
var install = 'echo "`pwd`/sfdx/bin" >> $GITHUB_PATH'
16
var version = 'sfdx/bin/sfdx --version'
17
exec(download+' && '+createDir+' && '+unzip+' && '+install+' && '+version, function(error, stdout, stderr){
0 commit comments