Skip to content

Commit

Permalink
Fix tiddlywiki path
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlen22 committed May 17, 2018
1 parent e2f2fbf commit 6439e48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/datafolder.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function loadDataFolderType(mount, folder, reload) {
}
function loadDataFolderTiddlyWiki(mount, folder, reload) {
console.time('twboot-' + folder);
const target = "../../TiddlyWiki5-Jermolene";
const target = "../tiddlywiki";
const $tw = require(target + "/boot/boot.js").TiddlyWiki(require(target + "/boot/bootprefix.js").bootprefix({
packageInfo: JSON.parse(fs.readFileSync(path.join(__dirname, target + '/package.json'), 'utf8'))
}));
Expand Down
2 changes: 1 addition & 1 deletion src/datafolder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function loadDataFolderType(mount: string, folder: string, reload: string) {
}
function loadDataFolderTiddlyWiki(mount: string, folder: string, reload: string) {
console.time('twboot-' + folder);
const target = "../../TiddlyWiki5-Jermolene";
const target = "../tiddlywiki";
const $tw = require(target + "/boot/boot.js").TiddlyWiki(
require(target + "/boot/bootprefix.js").bootprefix({
packageInfo: JSON.parse(fs.readFileSync(path.join(__dirname, target + '/package.json'), 'utf8'))
Expand Down

0 comments on commit 6439e48

Please sign in to comment.