Fixing command error in export JSON optimized.

This commit is contained in:
ruidajo 2022-03-07 13:41:18 -05:00
parent 23619899c5
commit 60944f57bd
1 changed files with 2 additions and 2 deletions

View File

@ -163,9 +163,9 @@ TiddlyWiki >> exportJSONFileOptimized [
exporter exists ifFalse: [ self installJsonExporter].
"Ejecutar el exportador de JSON con OSSubprocess."
OSSUnixSubprocess new
command: 'fossil';
command: exporter fullName;
arguments: {};
workingDirectory: wikiFolder;
workingDirectory: wikiFolder fullName;
redirectStdout;
redirectStderr;
runAndWaitOnExitDo: [ :process :outString | ^ outString ]