Allow specifying a custom boot path (#2990)

print-window-tiddler
Arlen22 2018-04-08 16:38:28 +08:00 zatwierdzone przez Jeremy Ruston
rodzic df1f7e9798
commit f4496d8fd3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1942,7 +1942,7 @@ $tw.boot.startup = function(options) {
// For writable tiddler files, a hashmap of title to {filepath:,type:,hasMetaFile:}
$tw.boot.files = Object.create(null);
// System paths and filenames
$tw.boot.bootPath = path.dirname(module.filename);
$tw.boot.bootPath = options.bootPath || path.dirname(module.filename);
$tw.boot.corePath = path.resolve($tw.boot.bootPath,"../core");
// If there's no arguments then default to `--help`
if($tw.boot.argv.length === 0) {