Adding script to JSON exporter optimized installation.

This commit is contained in:
ruidajo 2022-03-07 18:14:34 -05:00
parent 5caea6c43b
commit e4e9323356

View File

@ -165,7 +165,7 @@ TiddlyWiki >> exportJSONFileOptimized [
OSSUnixSubprocess new OSSUnixSubprocess new
command: exporter fullName; command: exporter fullName;
workingDirectory: exporter parent fullName; workingDirectory: exporter parent fullName;
runAndWaitOnExitDo: [ :process :outString | ^ process ] runAndWaitOnExitDo: [ :process :outString | ^ self jsonFile ]
] ]
{ #category : #accessing } { #category : #accessing }
@ -293,6 +293,9 @@ TiddlyWiki >> installJsonExporter [
ZnClient new ZnClient new
url: 'https://mutabit.com/repos.fossil/mutabit/uv/wiki/scripts/exportJsonFile'; url: 'https://mutabit.com/repos.fossil/mutabit/uv/wiki/scripts/exportJsonFile';
downloadTo: folder / 'exportJsonFile'. downloadTo: folder / 'exportJsonFile'.
ZnClient new
url: 'https://mutabit.com/repos.fossil/mutabit/doc/trunk/wiki/scripts/exportJsonFile.nim';
downloadTo: folder / 'exportJsonFile.nim'.
OSSUnixSubprocess new OSSUnixSubprocess new
command: 'chmod'; command: 'chmod';
@ -480,7 +483,7 @@ TiddlyWiki >> resynchronize [
| repository | | repository |
self self
exportJSONFile; exportJSONFileOptimized;
importJSONFile. importJSONFile.
repository := self repository. repository := self repository.
repository update. repository update.