0

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.

melkyades
  • 1,719
  • 11
  • 20

1 Answers1

0

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!

EstebanLM
  • 4,252
  • 14
  • 17