summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js8
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/',
+ },
]
},
},