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
Hi, when using the following settings:
gulp.task('sftp', function () { return gulp.src(['./**/*.{css,js,gif,png}', '!./src/**/*']) .pipe(sftp({ host: 'ftpweb.xxxx.ac.uk', auth: 'keyMain', remotePath: 'public_html' })); });
I'm finding when gulp-sftp comes to create directories that it fails. This is what I see on my web server:
gulp-sftp
The dist dir should be created within the public_html dir and the styles dir within the dist.
dist
public_html
styles
I saw a recent fix (#2) for slashes but perhaps this fix needs to be extended?
The text was updated successfully, but these errors were encountered:
Can you tell me if you're on a windows client? My guess is yes, there might be an easy fix there
Sorry, something went wrong.
I am on Windows
Ok, uploaded a fix with the latest commit, don't have access to a windows machine at the moment; can you test and close?
Latest commit solves the issue on my Windows machine - many thanks
No branches or pull requests
Hi, when using the following settings:
I'm finding when
gulp-sftp
comes to create directories that it fails. This is what I see on my web server:The
dist
dir should be created within thepublic_html
dir and thestyles
dir within thedist
.I saw a recent fix (#2) for slashes but perhaps this fix needs to be extended?
The text was updated successfully, but these errors were encountered: