Skip to content

Commit

Permalink
Fix copy handling
Browse files Browse the repository at this point in the history
  • Loading branch information
KaptenJansson committed Aug 4, 2016
1 parent e79aae1 commit b3ba2b5
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,11 @@ module.exports = function(grunt) {
},
copy: {
build: {
cwd: '.',
files: [
{src: [
'out/'
],
dest: 'release',
nonull: true,
expand: true
}
]
dest: 'release/',
cwd: 'out',
src: '**',
nonull: true,
expand: true
}
},
});
Expand Down

0 comments on commit b3ba2b5

Please sign in to comment.