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
I have two projects with the same task:
var conn = ftp.create({ host: myHost, user: myUser, password: myPass, parallel: 10, log: gutil.log, secure: false, debug: true }); var globs = [ 'assets/**', 'css/**', 'lib/**', 'js/**', '*.html' ]; return merge([ gulp.src( globs, { base: 'out', buffer: false, cwd: config.path.out } ) .pipe(conn.newerOrDifferentSize(env.current.base)), gulp.src( ["vendors/**"], { base: 'out/js/', buffer: false, cwd: config.path.out } ) .pipe(conn.dest(env.current.vendors)) ]);
In one project, I can execute this code fine. Without problems. But with an other project, do nothing.
[10:51:34] Starting 'deploy'... [10:51:34] Finished 'deploy' after 18 ms
The code and the variables are cloned from one project to other. Any idea from the issue?
The text was updated successfully, but these errors were encountered:
Try replacing base: 'out' with base: './out'
base: 'out'
base: './out'
Sorry, something went wrong.
Not works, sorry :/
No branches or pull requests
I have two projects with the same task:
In one project, I can execute this code fine. Without problems.
But with an other project, do nothing.
The code and the variables are cloned from one project to other. Any idea from the issue?
The text was updated successfully, but these errors were encountered: