Skip to content

Commit

Permalink
Merge pull request #98 from dalehenrich/patch-1
Browse files Browse the repository at this point in the history
Fix compatibility issues with Squeak-Trunk
  • Loading branch information
fniephaus committed May 18, 2015
2 parents 9d5802e + fe5b462 commit d01f44f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/before.st
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ Smalltalk
ifTrue: [
"Force-update. Squeak does release artifacts too seldom."
Smalltalk at: #MCMcmUpdater ifPresent: [ :updater |
[updater updateFromDefaultRepository]
[(updater respondsTo: #updateFromDefaultRepository)
ifTrue: [updater updateFromDefaultRepository]
ifFalse: [updater default updateFromDefaultRepository]]
on: Warning do: [ :ex | ex resume: true ]].
"see https://github.com/dalehenrich/builderCI/issues/48"
fileInBlock value: 'CommandLineToolSet.st' ]].
Expand Down

0 comments on commit d01f44f

Please sign in to comment.