diff options
| author | Jules <jules@asdf.us> | 2014-01-28 10:12:41 -0500 |
|---|---|---|
| committer | Jules <jules@asdf.us> | 2014-01-28 10:12:41 -0500 |
| commit | e5e70c9b784d476ec64c18d9f04e890d17f63d66 (patch) | |
| tree | bf3b4629ee2f2aabee72a9b3c7f4bd0c64ef0ca5 /Gruntfile.js | |
| parent | 03d746887a9ca5ad7c2d0a40c0ca6ae877704d43 (diff) | |
proper path expansion
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index db8e0c0..688104d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -57,7 +57,13 @@ module.exports = function(grunt) { copy: { release: { files: [ - {expand: true, src: ['dist/*'], dest: '~/asdf/shader/', nonull: true}, + { + nonull: true, + expand: true, + cwd: 'dist/', + src: ['**'], + dest: process.env.HOME + '/asdf/shader/', + }, ] }, }, |
