Fixed path in scripts task

This commit is contained in:
Oliver Davies 2016-04-05 20:38:55 +01:00
parent cc94525f73
commit 32f727ee5f

View file

@ -58,7 +58,7 @@ gulp.task('scripts', function () {
app.js([
config.bowerDir + '/jquery/dist/jquery.js',
config.bowerDir + '/bootstrap-sass/assets/javascripts/bootstrap.js',
config.assetsDir + config.jsPattern
config.assetsDir + '/' + config.jsPattern
], 'site.js');
})