Skip to content

Commit

Permalink
Merge pull request #2963 from atomfrede/production-v2
Browse files Browse the repository at this point in the history
fix path for ng constants
  • Loading branch information
jdubois committed Feb 22, 2016
2 parents 6d2ab9a + 3d485a3 commit 338e8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ gulp.task('ngconstant:dev', function() {
VERSION: util.parseVersion()
}
})
.pipe(gulp.dest(config.app + 'app/'));
.pipe(gulp.dest(config.app + 'scripts/app/'));
});

gulp.task('ngconstant:prod', function() {
Expand All @@ -283,7 +283,7 @@ gulp.task('ngconstant:prod', function() {
VERSION: util.parseVersion()
}
})
.pipe(gulp.dest(config.app + 'app/'));
.pipe(gulp.dest(config.app + 'scripts/app/'));
});

gulp.task('jshint', function() {
Expand Down

0 comments on commit 338e8bf

Please sign in to comment.