diff --git a/gulpfile.js b/gulpfile.js index b22b535..5ca4aa3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -206,7 +206,7 @@ gulp.task('server:spawn', function() { if (os.platform() == 'win32') { server = child.spawn(appname + '.exe'); } else { - server = child.spawn(appname); + server = child.spawn('./' + appname); } // Trigger reload upon server start @@ -247,4 +247,4 @@ gulp.task('watch', ['server:build'], function() { gulp.task('init', ['sass', 'javascript', 'jquery', 'bootstrap', 'underscore', 'favicon', 'server:build']); // Default - only run the tasks that change often -gulp.task('default', ['sass', 'javascript', 'server:build']); \ No newline at end of file +gulp.task('default', ['sass', 'javascript', 'server:build']);