Metacello / metacello

Metacello is a package management system for Smalltalk
MIT License
87 stars 43 forks source link

Github .zip download not downloaded to `/tmp` as expected ... Pharo-5.0 #405

Closed dalehenrich closed 8 years ago

dalehenrich commented 8 years ago

see this thread for initial description

dalehenrich commented 8 years ago

It turns out that MetacelloPharo30Platform>>tempFileFor:suffix: should be implemented as:

tempFileFor: aName suffix: aSuffixString
    ^ FileLocator temp asFileReference / (FileReference newTempFilePrefix: aName suffix: aSuffixString) basename
dalehenrich commented 8 years ago

surprising that FileReference class>>newTempFilePrefix:suffix: doesn't return a FileReference that includes /tmp in the path ...