Skip to content

Commit b3e0de9

Browse files
committed
fixing logic of calling build in the command.
1 parent 89ac856 commit b3e0de9

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/Pillar-Cli/ClapPillarBuildCommand.class.st

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,9 @@ ClapPillarBuildCommand >> execute [
7777
self
7878
positional: #requestedFiles
7979
ifPresent: [ :files | strategy := PRBuildListStrategy list: (files collect: [ :f | f asFileReference ]) ].
80-
81-
target
82-
buildStrategy: strategy;
83-
buildOn: project.
80+
81+
target buildStrategy: strategy.
82+
(project build: target) exitProcess
8483
]
8584

8685
{ #category : 'accessing' }

0 commit comments

Comments
 (0)