We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is this library compatible with async/await?
I tried this:
var result = await ftps.mirror({ remoteDir: remote_path, // + '/.', localDir: commit_dir + '/' + commit_diffs.commit + '/.', //parallel: true, upload: true, //filter: '/.**/', }).exec()
and got this: Error: Callback is missing to exec() function.
Error: Callback is missing to exec() function.
The text was updated successfully, but these errors were encountered:
async/await works with functions that returns a Promise. So to make this work, you gotta make ftps.mirror().exec() return a promise.
Sorry, something went wrong.
Just in case people wants the gist of making this module works with async/await here's what I did. Sorry for necroposting.
const mirrorFTP = new Promise((resolve, reject) => { return ftps.mirror({ remoteDir: remote_path, // + '/.', localDir: commit_dir + '/' + commit_diffs.commit + '/.', //parallel: true, upload: true, //filter: '/.**/', }).exec((err, res) => { if (res.error) { reject(`❌ FTP sync error: ${res.error}`) } resolve(`✔️ FTP Mirroring done`) }) }) try { const result = await mirrorFTP console.log(result) } catch (e) { console.error(e) }
No branches or pull requests
Is this library compatible with async/await?
I tried this:
and got this:
Error: Callback is missing to exec() function.
The text was updated successfully, but these errors were encountered: