Hi all,
is this possible or, if not, would it be possible to implement it? For a new project, I'm depending on a number of inbox commits for Squeak that have not yet been merged into the Trunk repository. I would like to specify these commits in my baseline script in order to have them merged when loading my project. However, I cannot use #loads: for this purpose because this would unload any newer changes committed to the Trunk.
Pseudo code:
package: 'WebClient-Core' with: [
spec
repository: 'https://source.squeak.org/inbox';
file: 'WebClient-Core-ct.127';
operation: #merge]
I also stumbled upon several implementors of `#mergeSpec´, but I did not find out how to use this. Any help would be appreciated, is there any documentation for the complete baseline specification?
Hi all,
is this possible or, if not, would it be possible to implement it? For a new project, I'm depending on a number of inbox commits for Squeak that have not yet been merged into the Trunk repository. I would like to specify these commits in my baseline script in order to have them merged when loading my project. However, I cannot use
#loads:for this purpose because this would unload any newer changes committed to the Trunk.Pseudo code:
I also stumbled upon several implementors of `#mergeSpec´, but I did not find out how to use this. Any help would be appreciated, is there any documentation for the complete baseline specification?