Merge 3ac4502ffa
This commit is contained in:
commit
c453132530
@ -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 }
|
||||
|
@ -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 |
|
||||
|
Loading…
Reference in New Issue
Block a user