Migrating functinoality from OSSubprocess to GtSubprocess.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-08-22 17:12:43 -05:00
parent 1378d854c4
commit 22b1859d37

View File

@ -34,16 +34,12 @@ Nimble class >> installPackagesList [
(FileLocator home / '.nimble' / 'packages_official.json') exists
ifTrue: [ ^ self ].
(Smalltalk os isUnix or: [ Smalltalk os isMacOS ])
ifTrue: [
OSSUnixSubprocess new
command: 'nimble';
arguments: #('refresh');
redirectStdout;
runAndWaitOnExitDo: [ :process :outString | ^ outString ].
].
Smalltalk os isWindows
ifTrue: [ ^ LibC resultOfCommand: 'nimble refresh' ]
ifTrue: [ ^ LibC resultOfCommand: 'nimble refresh' ].
^ (GtSubprocessWithInMemoryOutput new
shellCommand: 'nimble refresh';
runAndWait;
stdout)
]
{ #category : #accessing }
@ -66,9 +62,8 @@ Nimble class >> installed [
{ #category : #accessing }
Nimble class >> version [
OSSUnixSubprocess new
command: 'nimble';
arguments: #('--version');
redirectStdout;
runAndWaitOnExitDo: [ :process :outString | ^ outString ]
^ (GtSubprocessWithInMemoryOutput new
shellCommand: 'nimble --version';
runAndWait;
stdout)
]