Skip to content

Commit 063c200

Browse files
authored
Update index.js
1 parent a8abcaf commit 063c200

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ function installSFDX(){
2222
}
2323

2424
function createAuthFile(){
25-
fs.writeFileSync('tmp/sfdx/sfdx_auth.txt', core.getInput('sfdx-auth-url'))
25+
fs.writeFileSync('tmp/sfdx_auth.txt', core.getInput('sfdx-auth-url'))
2626
authSFDX()
2727
}
2828

2929
function authSFDX(){
3030
var params = '--setdefaultdevhubusername --setdefaultusername -a SFDX-ENV'
31-
exec('sfdx force:auth:sfdxurl:store -f tmp/sfdx/sfdx_auth.txt '+params, function(error, stdout, stderr){
31+
exec('sfdx force:auth:sfdxurl:store -f tmp/sfdx_auth.txt '+params, function(error, stdout, stderr){
3232
if(error) throw(stderr)
3333
core.debug(stdout)
3434
})

0 commit comments

Comments
 (0)