I want to use grunt-contrib-copy (or any other grunt copying plugin) to copy files to network location.
Trying below:
copy: { test: {
to copy files from mac to windows shared directory prepend the destination with smb:
copy: { test: { files: [ { src: ['Scripts/*'], dest: ['smb://location/site/Scripts/'] } ] } }
kr, Joachim