From: vsn4ik Date: Fri, 29 Aug 2014 21:20:48 +0000 (+0400) Subject: Gruntfile.js: Simplify copy task. X-Git-Tag: v3.3.0~213^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F14488%2Fhead;p=thirdparty%2Fbootstrap.git Gruntfile.js: Simplify copy task. --- diff --git a/Gruntfile.js b/Gruntfile.js index 486b0417fd..7738ab89f6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -291,19 +291,12 @@ module.exports = function (grunt) { copy: { fonts: { - expand: true, src: 'fonts/*', dest: 'dist/' }, docs: { - expand: true, - cwd: './dist', - src: [ - 'css/*', - 'js/*', - 'fonts/*' - ], - dest: 'docs/dist' + src: 'dist/*/*', + dest: 'docs/' } },