When commiting with Versionner in Pharo 5.0 I always have to manually
override this method

KomitStagingArea>>remotes
    | result |

    result := self packages first remotes.
    self packages allButFirst do: [ :each |
        result := result intersection: each remotes ].

    ^ result collect: [ :each | each koRemote ]

to

KomitStagingArea>>remotes

    self packages isEmpty
        ifFalse: [
            | result |
            result := self packages first remotes.
            self packages allButFirst do: [ :each |
                result := result intersection: each remotes ].
            ^ result collect: [ :each | each koRemote ] ].
    ^ Array empty.

Screenshot attached.
Is this known issue or was this reported before?

Hernan

Reply via email to