@gyran/google-drive-incomplete-folder-sync
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -97,7 +97,5 @@ #!/usr/bin/env node | ||
} else if (file.capabilities.canDownload) { | ||
console.log('will download', file.name); | ||
await downloadDriveFile( | ||
file.id, | ||
nodePath.join(dataPath, currentPath, file.name), | ||
); | ||
const destinationPath = nodePath.join(dataPath, currentPath, file.name); | ||
console.log('will download', file.name, 'to', destinationPath); | ||
await downloadDriveFile(file.id, destinationPath); | ||
} | ||
@@ -104,0 +102,0 @@ } |
{ | ||
"name": "@gyran/google-drive-incomplete-folder-sync", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "very simple and naive incomplete folder sync with google drive for my personal use", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
7446
227