Guest User

Untitled

a guest
Apr 26th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. gulp.task('deploy', function() {
  2. return gulp.src('dist/**')
  3. .pipe(rsync({
  4. root: 'dist/',
  5. hostname: '*****@*****',
  6. destination: '/home/hopscrm/web/hopscrm.ru/public_html/',
  7. archive: true,
  8. silent: false,
  9. compress: true,
  10. progress: true,
  11. }));
  12. });
  13.  
  14. [14:19:08] Using gulpfile ~/Library/Mobile Documents/com~apple~CloudDocs/Work/Web/Projects/hopsCRM/gulpfile.js
  15. [14:19:08] Starting 'deploy'...
  16. [14:19:08] Finished 'deploy' after 94 ms
Add Comment
Please, Sign In to add comment