Skip to content

Commit

Permalink
update default
Browse files Browse the repository at this point in the history
  • Loading branch information
prakattuladhar committed Apr 12, 2022
1 parent 983461f commit f8f9458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30627,7 +30627,7 @@ if (privateKeyIsFile == "true") {

const localPath = core.getInput('localPath');
const remotePath = core.getInput('remotePath');
const additionalPaths = core.getInput('additionalPaths')
const additionalPaths = core.getInput('additionalPaths') || {}

sftp.connect({
host: host,
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if (privateKeyIsFile == "true") {

const localPath = core.getInput('localPath');
const remotePath = core.getInput('remotePath');
const additionalPaths = core.getInput('additionalPaths')
const additionalPaths = core.getInput('additionalPaths') || {}

sftp.connect({
host: host,
Expand Down

0 comments on commit f8f9458

Please sign in to comment.