Skip to content

Commit

Permalink
fixed gulp-compass for correcting windows path.
Browse files Browse the repository at this point in the history
  • Loading branch information
avevlad committed Jan 22, 2014
1 parent 90a0f63 commit 76607c1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ gulp.task 'coffee', ->

gulp.task 'sass', ->
gulp
.src([o.src + '/sass/*.sass'])
.pipe(plg.compass(
css: o.out + '/css'
sass: o.src + '/sass'
image: o.out + '/images'
))
.src([o.src + '/sass/*.sass'])
.pipe(plg.compass(
css: o.out + '/css'
sass: o.src + '/sass'
image: o.out + '/images'
))

gulp.task 'default', ->
gulp.run 'ect', 'coffee', 'sass'
Expand Down

0 comments on commit 76607c1

Please sign in to comment.