aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvsn4ik <[email protected]>2014-08-30 01:20:48 +0400
committervsn4ik <[email protected]>2014-08-30 01:20:48 +0400
commit1965f032ca27c6a44df08131fca691b246fd0b91 (patch)
treea762e01e6ef7df7459f89230e34d3d8b6c6e66f1
parente99866447ba46d5bd28ceee806d14b6938f0a78a (diff)
downloadbootstrap-1965f032ca27c6a44df08131fca691b246fd0b91.tar.xz
bootstrap-1965f032ca27c6a44df08131fca691b246fd0b91.zip
Gruntfile.js: Simplify copy task.
-rw-r--r--Gruntfile.js11
1 files changed, 2 insertions, 9 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 486b0417f..7738ab89f 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/'
}
},