Metacello / metacello

Metacello is a package management system for Smalltalk
MIT License
87 stars 43 forks source link

How to download baseline again? #529

Closed LinqLover closed 3 years ago

LinqLover commented 3 years ago

I'm using Metacello to download a baseline from a GitHub project, for example:

Metacello new
    baseline: 'TelegramClient';
    repository: 'github://LinqLover/TelegramClient:update-baseline/packages';
    load.

However, as you can see (hpi-swa-teaching/TelegramClient#312), I'm developing this baseline step by step. Unfortunately, to test it, I have to reuse a clean image every time, because once the baseline got loaded, running the command again does not refresh the baseline. Is there any solution to this problem better than restarting my image?

Maybe related to #513; I do know not enough about this repository to say that.

LinqLover commented 3 years ago

Well, it was simply a missing #get. However, to actually upgrade your project, the solution described in #513/https://github.com/hpi-swa/Squot/pull/262 is still required.