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
1 changed files with 7 additions and 4 deletions

View File

@ -165,7 +165,7 @@ TiddlyWiki >> exportJSONFileOptimized [
OSSUnixSubprocess new
command: exporter fullName;
workingDirectory: exporter parent fullName;
runAndWaitOnExitDo: [ :process :outString | ^ process ]
runAndWaitOnExitDo: [ :process :outString | ^ self jsonFile ]
]
{ #category : #accessing }
@ -291,8 +291,11 @@ TiddlyWiki >> installJsonExporter [
| folder |
folder := (self file parent / 'scripts') ensureCreateDirectory.
ZnClient new
url: 'https://mutabit.com/repos.fossil/mutabit/uv/wiki/scripts/exportJsonFile';
downloadTo: folder / 'exportJsonFile'.
url: 'https://mutabit.com/repos.fossil/mutabit/uv/wiki/scripts/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
command: 'chmod';
@ -480,7 +483,7 @@ TiddlyWiki >> resynchronize [
| repository |
self
exportJSONFile;
exportJSONFileOptimized;
importJSONFile.
repository := self repository.
repository update.