Hi,
I was playing around with metacello because I wanted to
ignore warnings with locks...
currently I am doing something like
~~~~~~~~
Metacello new
baseline:
'ProjectAAA';
repository:
'gitfiletree:///path/to/projectAAA';
lock.
Metacello new
baseline:
'ProjectBBB';
repository:
'gitfiletree:///projectBBB';
onConflict:
[ :ex | ex allow ];
load.
~~~~~~~~~
This will load both projects via gitfiletree, however it
will also generate a lots of lock warnings which I have to
manually confirm - this is bad for scripts.
mention onLock: [ :ex | ex honor ], however in Pharo 5.0
there is no such method "honor".
Is this bug?
Should Metacello be updated on Pharo 5.0?
Will this even solve my problems? (Honoring locks while not
throwing warnings).
Thanks,
Peter