Skip to content

Commit

Permalink
[nrfconnect] Fixed paths used to create flash bundle (project-chip#34528
Browse files Browse the repository at this point in the history
)

Added nrfconnect directory in path used to copy bundle outputs.
  • Loading branch information
kkasperczyk-no authored and j-ororke committed Jul 31, 2024
1 parent 03dd0a4 commit 08c4132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build/builders/nrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,6 @@ def build_outputs(self):
def bundle_outputs(self):
if self.app == NrfApp.UNIT_TESTS:
return
with open(os.path.join(self.output_dir, self.app.FlashBundleName())) as f:
with open(os.path.join(self.output_dir, 'nrfconnect', self.app.FlashBundleName())) as f:
for line in filter(None, [x.strip() for x in f.readlines()]):
yield BuilderOutput(os.path.join(self.output_dir, line), line)
yield BuilderOutput(os.path.join(self.output_dir, 'nrfconnect', line), line)

0 comments on commit 08c4132

Please sign in to comment.