Browse Source

Merge pull request #334 from ZDroid/fix-wildcar

Fix #325: change '*' to '**/*'
pull/323/merge
XhmikosR 11 years ago
parent
commit
7a4de7bea5
  1. 2
      Gruntfile.js

2
Gruntfile.js

@ -72,7 +72,7 @@ module.exports = function(grunt) {
expand: true, expand: true,
cwd: 'dist', cwd: 'dist',
src: [ src: [
'*' '**/*'
], ],
dest: 'docs/dist' dest: 'docs/dist'
} }

Loading…
Cancel
Save