This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-07-25 18:28:52 -05:00
commit c453132530
2 changed files with 17 additions and 2 deletions

View File

@ -35,8 +35,10 @@ NanoID class >> install [
OSSUnixSubprocess new
command: 'nim';
arguments: {'c'. self scriptSourceCode fullName};
workingDirectory: binaryFileFolder;
runAndWaitOnExitDo: [ :process :outString | ^ binaryFileFolder ]
"workingDirectory: binaryFileFolder;"
runAndWaitOnExitDo: [ :process :outString |
(self scriptSourceCode parent / (self scriptSourceCode) basenameWithoutExtension) moveTo: binaryFileFolder asFileReference.
^ binaryFileFolder ]
]
{ #category : #accessing }

View File

@ -19,6 +19,7 @@ Nimble class >> detect: packageName [
{ #category : #accessing }
Nimble class >> install: packageName [
(self detect: packageName) ifTrue: [ ^ self ].
self installPackagesList.
OSSUnixSubprocess new
command: 'nimble';
arguments: {'install'.
@ -27,6 +28,18 @@ Nimble class >> install: packageName [
runAndWaitOnExitDo: [ :process :outString | ^ outString ]
]
{ #category : #accessing }
Nimble class >> installPackagesList [
(FileLocator home / '.nimble' / 'packages_official.json') exists
ifTrue: [ ^ self ].
OSSUnixSubprocess new
command: 'nimble';
arguments: #('refresh');
redirectStdout;
runAndWaitOnExitDo: [ :process :outString | ^ outString ]
]
{ #category : #accessing }
Nimble class >> installed [
| installed |