Improving key names, as FossilRepo deal mostly with files.
This commit is contained in:
parent
378d42b6c8
commit
d90f1409fb
@ -486,13 +486,13 @@ FossilRepo >> status [
|
||||
].
|
||||
edited := status lines select: [ :line | line beginsWith: 'EDITED' ].
|
||||
output
|
||||
at: 'edited files'
|
||||
at: 'edited'
|
||||
put: (edited collect:
|
||||
[ :line | (line withoutPrefix: 'EDITED') trimmed accentedCharactersCorrection ]).
|
||||
|
||||
missing := status lines select: [ :line | line beginsWith: 'MISSING' ].
|
||||
output
|
||||
at: 'missing files'
|
||||
at: 'missing'
|
||||
put: (missing collect:
|
||||
[ :line | (line withoutPrefix: 'MISSING') trimmed accentedCharactersCorrection ]).
|
||||
^ output
|
||||
|
Loading…
Reference in New Issue
Block a user