grunt-contrib-copy icon indicating copy to clipboard operation
grunt-contrib-copy copied to clipboard

Seems suddenly this stopped working

Open bobugeorgep opened this issue 8 years ago • 0 comments

All I am trying to do is copy a text file from a "from" folder to "test-grunt-target-2" folder. It was working fine, but now it seems taking for ever. I terminate the console since its taking more than 1 min for copying a 20Kb text file. image

copy: {
            target2: {
                files: [
                    {
                        cwd: 'from/',
                        expand: true,
                        src: ['**/*.*'],
                        dest: 'test-grunt-target-2'
                    }
                ]
            }
        },

bobugeorgep avatar Feb 18 '17 18:02 bobugeorgep