Skip to content

Commit

Permalink
Fixed minor eslint warning: path.join() used incorrectly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan B. Harvey committed Sep 25, 2017
1 parent 48c0c75 commit 452f1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ app.use(function(req, res, next) {
app.use('/api', routes);

app.get('/', function(req, res) {
res.sendFile(path.join(__dirname + '/index.html'));
res.sendFile(path.join(__dirname, '/index.html'));
});


Expand Down

0 comments on commit 452f1da

Please sign in to comment.