Skip to content

Commit

Permalink
#1607 missing theme.less from LESS repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Feb 20, 2015
1 parent 3a75bdc commit 6e6f6cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/admin/distributions/create.js
Expand Up @@ -80,7 +80,6 @@ module.exports = function(callback) {
gulp.task(task.meteor, function() {
gulp.src(release.templates.meteor[distLowerCase])
.pipe(plumber())
.pipe(debug())
.pipe(flatten())
.pipe(replace(regExp.match.version, version))
.pipe(rename(release.files.meteor))
Expand All @@ -101,6 +100,7 @@ module.exports = function(callback) {
else if(distribution == 'LESS') {
gulp.task(task.repo, function() {
return gulp.src('./src/theme.config.example', { base: './src/' })
.pipe(gulp.src('./src/theme.less*', { base: './src/' }))
.pipe(gulp.src('./src/definitions/**/*', { base: './src/' }))
.pipe(gulp.src('./src/_site/**/*', { base: './src/' }))
.pipe(gulp.src('./src/themes/**/*', { base: './src/' }))
Expand Down

0 comments on commit 6e6f6cd

Please sign in to comment.