Fixing export JSON file optimized.

This commit is contained in:
ruidajo 2022-03-07 17:29:59 -05:00
parent af24c8094c
commit 5caea6c43b
1 changed files with 2 additions and 5 deletions

View File

@ -161,14 +161,11 @@ TiddlyWiki >> exportJSONFileOptimized [
wikiFolder := self file parent.
exporter := wikiFolder / 'scripts' / 'exportJsonFile'.
exporter exists ifFalse: [ self installJsonExporter].
"Ejecutar el exportador de JSON con OSSubprocess."
OSSUnixSubprocess new
command: exporter fullName;
arguments: {};
workingDirectory: exporter parent fullName;
redirectStdout;
redirectStderr;
runAndWaitOnExitDo: [ :process :outString | ^ outString ]
runAndWaitOnExitDo: [ :process :outString | ^ process ]
]
{ #category : #accessing }