Skip to content

Commit

Permalink
fix template listing in CLI mode
Browse files Browse the repository at this point in the history
  • Loading branch information
demarey committed Jan 12, 2024
1 parent 3ff6afa commit 7308946
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PharoLauncher-CLI/PhLAbstractTemplate.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Extension { #name : #PhLAbstractTemplate }
PhLAbstractTemplate class >> listPrintAttributeBlocks [

^ {[:template | template name].
[:template | template url]}
[:template | template url asString]}
]

{ #category : #'*PharoLauncher-CLI' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PhLTemplateTestRepository >> createTemplateInDefaultGroupNamed: aName [
{ #category : #instance }
PhLTemplateTestRepository >> createTemplateNamed: aName inCategory: aCategoryName [
(self categoryNamed: aCategoryName) templatesAndGroups
add: (PhLRemoteTemplate name: aName url: 'http://', aName, '.foo').
add: (PhLRemoteTemplate name: aName url: ('http://', aName, '.foo') asZnUrl).
]

{ #category : #initialization }
Expand Down

0 comments on commit 7308946

Please sign in to comment.