Skip to content

Commit

Permalink
Fixed missing img directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasyip committed Feb 1, 2015
1 parent a208d51 commit 5bd61f6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ module.exports = (grunt) ->
src: ["**/*", "!.*", "!*.coffee"]
dest: "<%= dirs.build %>/extensions"

theme:
expand: true
cwd: 'themes'
src: ["img/**/*", "!.*"]
dest: "<%= dirs.build %>/themes"

dist:
files: [
expand: yes
Expand Down Expand Up @@ -439,7 +445,7 @@ module.exports = (grunt) ->
grunt.registerTask 'script', ['copy:script', 'coffee:script', 'concat:script']

# jQT Theme
grunt.registerTask 'theme', ['script', 'compass:theme', 'concat:theme']
grunt.registerTask 'theme', ['script', 'copy:theme', 'compass:theme', 'concat:theme']

# Main jQT bits
grunt.registerTask 'main', ['script', 'theme']
Expand Down

0 comments on commit 5bd61f6

Please sign in to comment.