Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Some apps are fussy about extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-andrews committed May 1, 2015
1 parent f0ea89d commit 3ae428e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function runLocal(opts) {
return new Promise(function(resolve, reject) {
var env = Object.create(process.env);
env.PORT = port;
var local = spawn('nodemon', ['server/app', '--watch server'], { cwd: process.cwd(), env: env });
var local = spawn('nodemon', ['server/app.js', '--watch server'], { cwd: process.cwd(), env: env });

local.stdout.on('data', toStdOut);
local.stderr.on('data', toStdErr);
Expand Down

0 comments on commit 3ae428e

Please sign in to comment.