Making the software more modular. TO DO: refactor with improved #list method.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-08-08 20:02:56 -05:00
parent 2b743dbd9a
commit 38a72d1f79
1 changed files with 6 additions and 0 deletions

View File

@ -334,6 +334,12 @@ FossilRepo >> lastVersionPath: aFileNameWithRelativePath [
{ #category : #accessing }
FossilRepo >> list [
^ (self command: 'ls') lines collect: [:line | line accentedCharactersCorrection ].
]
{ #category : #accessing }
FossilRepo >> listSeparatingMardeepFiles [
| lines output markdeepFiles otherFiles |
output := OrderedDictionary new.
lines := (self command: 'ls') lines.