1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 02:19:55 +00:00

re-add outputpath variable

This commit is contained in:
James Welford Anderson 2015-02-21 06:49:34 +09:00
parent ee6b6a0f0c
commit cf59e7a71b

View File

@ -35,7 +35,8 @@ Command.prototype.execute = function() {
wiki = this.commander.wiki,
filter = this.params[0],
template = this.params[1],
pathname = path.resolve(this.commander.outputPath,this.params[2]),
outputPath = this.commander.outputPath,
pathname = path.resolve(outputPath,this.params[2]),
type = this.params[3] || "text/html",
extension = this.params[4] || ".html",
deleteDirectory = (this.params[5] || "") != "noclean",