Skip to content

Commit

Permalink
Merge pull request #1115 from SabineMa/master
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
guillep authored Dec 26, 2018
2 parents a924866 + 3ef383d commit 95f2597
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,15 @@ do: [ :each | (each asPackageIfAbsent: [ nil ]) ifNotNil: #removeFromSystem ].
"update icons (iceberg needs some new)"
ThemeIcons current: ThemeIcons loadDefault.
"load iceberg"
Metacello new
baseline: 'Iceberg';
repository: 'github://pharo-vcs/iceberg:v1.?';
onWarningLog;
load.
"Re-initialize libgit2"
(Smalltalk at: #LGitLibrary) initialize.
Expand All @@ -112,6 +116,13 @@ Smalltalk compilerClass recompileAll
"
```

If you get a API rate limit exceeded error from github, like "Error accessing tags for github project: 'pharo-vcs/iceberg' -> 'API rate limit exceeded for...." then you can replace the metacello statement above with:
```
Metacello new
githubUser: 'pharo-vcs' project: 'Iceberg' commitish: 'v1.?' path: '';
baseline: 'Iceberg';
load.
```
*NOTE: you need to update Iceberg in a NEW image, otherwise there will be obsolete repositories around.*

## 5 minutes tutorial
Expand Down

0 comments on commit 95f2597

Please sign in to comment.