Skip to content

Commit

Permalink
Coding style nit for relative paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed May 21, 2023
1 parent 0de3a2a commit 42c6932
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ var sqlite3 = require('sqlite3');
var mkdirp = require('mkdirp');
var crypto = require('crypto');

mkdirp.sync('./var/db');
mkdirp.sync('var/db');

var db = new sqlite3.Database('./var/db/todos.db');
var db = new sqlite3.Database('var/db/todos.db');

db.serialize(function() {
// create the database schema for the todos app
Expand Down

0 comments on commit 42c6932

Please sign in to comment.