Skip to content

Commit

Permalink
Merge b05fb25
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Jan 9, 2019
2 parents 4a1ae62 + b05fb25 commit 1ca4f1e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,22 @@ MetacelloPharoPlatform select.
do: [ :each | (each asPackageIfAbsent: [ nil ]) ifNotNil: #removeFromSystem ].
"update icons (iceberg needs some new)"
ThemeIcons current: ThemeIcons loadDefault.
"load iceberg"
"Loading Tonel before trying to load Iceberg.
This is required to load iceberg packages and dependencies in Tonel format"
Metacello new
baseline: 'Tonel';
repository: 'github://pharo-vcs/tonel:v1.0.12';
load.
"Updating Metacello"
Metacello new
baseline: 'Metacello';
repository: 'github://metacello/metacello:pharo-6.1_dev/repository';
onConflict: [ :ex | ex allow ];
load.
"load iceberg"
Metacello new
baseline: 'Iceberg';
repository: 'github://pharo-vcs/iceberg:v1.?';
Expand Down
14 changes: 14 additions & 0 deletions scripts/updateIceberg.st
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ do: [ :each |
('Removing ', each) logCr.
package removeFromSystem ] ].

"Loading Tonel before trying to load Iceberg.
This is required to load iceberg packages and dependencies in Tonel format"
Metacello new
baseline: 'Tonel';
repository: 'github://pharo-vcs/tonel:v1.0.12';
load.

"Updating Metacello"
Metacello new
baseline: 'Metacello';
repository: 'github://metacello/metacello:pharo-6.1_dev/repository';
onConflict: [ :ex | ex allow ];
load.

Metacello new
baseline: 'Iceberg';
repository: 'filetree://./';
Expand Down

0 comments on commit 1ca4f1e

Please sign in to comment.