Comparing version 0.0.3 to 0.0.4
{ | ||
"name": "nodesftp", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "a simple sftp client built on top of ssh2", | ||
@@ -5,0 +5,0 @@ "main": "sftp.js", |
@@ -18,3 +18,3 @@ function upload(credentials,pathToRemoteFile,pathToLocalFile){ | ||
if (err) throw err; | ||
sftp.fastPut(pathToLocal+file, pathToRemote+file ,function(err) { | ||
sftp.fastPut(pathToLocalFile, pathToRemoteFile ,function(err) { | ||
if (err) throw err; | ||
@@ -21,0 +21,0 @@ else { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2626