[squeak-dev] The Trunk: ReleaseBuilder-mt.215.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Feb 17 16:05:38 UTC 2021


Marcel Taeumel uploaded a new version of ReleaseBuilder to project The Trunk:
http://source.squeak.org/trunk/ReleaseBuilder-mt.215.mcz

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

Name: ReleaseBuilder-mt.215
Author: mt
Time: 17 February 2021, 5:05:37.202893 pm
UUID: 8fccf536-9495-3d4a-a67d-720286012aca
Ancestors: ReleaseBuilder-mt.214

Always use dialog interface that supports #valueSupplyingAnswer for scripts.

=============== Diff against ReleaseBuilder-mt.214 ===============

Item was changed:
  ----- Method: ReleaseBuilder class>>assureReleaseRepositoryReadAccess: (in category 'manual') -----
  assureReleaseRepositoryReadAccess: repo
  
  	self releaseLocally ifTrue: [
  		(FileDirectory on: repo description) assureExistence.
  		^ true].
  	
  	[repo allFileNames] on: NetworkError do: [
+ 		self
+ 			inform: ('Release Builder - Manual Step Required\\Please create the release repository:\{1}\...and ensure that you have global read access to it.' withCRs
+ 				format: {repo description}).
- 		UserDialogBoxMorph
- 			inform: ('Please create the release repository:\{1}\...and ensure that you have global read access to it.' withCRs
- 				format: {repo description}) title: 'Release Builder - Manual Step Required'.
  		^ false].
  	^ true!



More information about the Squeak-dev mailing list