melkyades
melkyades

Reputation: 1786

how to install a specific metacello group from command line in Pharo 9?

I'm running this line which used to work as expected in Pharo 8, but doesn't in Pharo 9/10:

    ./pharo bootstrap.image metacello install tonel://./src BaselineOfPowerlang --groups=base

Instead of installing the base group, in Pharo 9 it installs everything (the dev group), so I guess the cli API changed. The baseline is in the Powerlang repo.

Upvotes: 0

Views: 77

Answers (1)

EstebanLM
EstebanLM

Reputation: 4357

I don't know why is failing (it shouldn't), but you can workaround the problem by executing:

./pharo bootstrap.image eval --save "
    Metacello new
        repository: 'tonel://./src';
        baseline: 'Powerlang';
        load: 'base'
"

I hope it helps!

Upvotes: 0

Related Questions