Skip to content

Instantly share code, notes, and snippets.

@timkelty
Created January 28, 2015 02:22
Show Gist options
  • Save timkelty/25060e59c89b597bca2f to your computer and use it in GitHub Desktop.
Save timkelty/25060e59c89b597bca2f to your computer and use it in GitHub Desktop.
function download() {
return Promise.promisify(mkdirp)(path.dirname(localDumpFilePath)).then(function() {
return shipit.remoteCopy(remoteDumpFilePath, localDumpFilePath, {
direction: 'remoteToLocal'
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment