You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to execute sftp-deploy two times: once for deploying the client side code (dist->webdir) and one for backend (backend->backend). Both things go to the same server, but two different directories. It seems that only the first call to sftp-deploy proceeds fine, the second one.. copies nothing.
From command line both grunt sftp-deploy:build and grunt sftp-deploy:build run just fine
In the composed task only first one is executed fine (in this case it's "build" one): grunt.registerTask('deploy-to-production', [ 'sftp-deploy:build', 'sftp-deploy:backend' ]);
Hi there
I want to execute sftp-deploy two times: once for deploying the client side code (dist->webdir) and one for backend (backend->backend). Both things go to the same server, but two different directories. It seems that only the first call to sftp-deploy proceeds fine, the second one.. copies nothing.
From command line both
grunt sftp-deploy:build
andgrunt sftp-deploy:build
run just fineIn the composed task only first one is executed fine (in this case it's "build" one):
grunt.registerTask('deploy-to-production', [ 'sftp-deploy:build', 'sftp-deploy:backend' ]);
Here's my task definition:
And here's what I get for the second task if I try running
grunt deploy-to-production --verbose
:P.S.
It is somewhat similar to #19 , but there it was about hanging, in my case second execution is silently ignored.
The text was updated successfully, but these errors were encountered: