[Pkg] Installer: Installer-Core-kph.323.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Mon Jul 20 21:54:31 UTC 2009


A new version of Installer-Core was added to project Installer:
http://www.squeaksource.com/Installer/Installer-Core-kph.323.mcz

==================== Summary ====================

Name: Installer-Core-kph.323
Author: kph
Time: 20 July 2009, 10:54:26 pm
UUID: 841c3f94-00a7-45b0-8a1c-eeb67c6ec7d2
Ancestors: Installer-Core-kph.322

fix for fromUrl:

=============== Diff against Installer-Core-kph.322 ===============

Item was changed:
  ----- Method: Installer class>>fromUrl: (in category 'url') -----
  fromUrl: aUrl
  
  	"try and pick an Installer appropriate for the Url"
+ 	| inst | 
- 	
  	((aUrl endsWith: '.mcz') or: [ aUrl endsWith: '.mcm' ])
+ 	ifTrue: [ inst :=  Installer mc fromUrl: aUrl ] .
- 	ifTrue: [ ^ Installer mc fromUrl: aUrl ] .
  	
+ 	^ inst packages isEmpty 
+ 		ifFalse: [ inst ]
+ 		ifTrue: [ Installer url: aUrl ]
- 	 ^ Installer url: aUrl 
  	!



More information about the Packages mailing list