Skip to content

Commit 4334e91

Browse files
[nrfconnect] Fixed paths used to create flash bundle (#34528)
Added nrfconnect directory in path used to copy bundle outputs.
1 parent e58954d commit 4334e91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/build/builders/nrf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,6 @@ def build_outputs(self):
239239
def bundle_outputs(self):
240240
if self.app == NrfApp.UNIT_TESTS:
241241
return
242-
with open(os.path.join(self.output_dir, self.app.FlashBundleName())) as f:
242+
with open(os.path.join(self.output_dir, 'nrfconnect', self.app.FlashBundleName())) as f:
243243
for line in filter(None, [x.strip() for x in f.readlines()]):
244-
yield BuilderOutput(os.path.join(self.output_dir, line), line)
244+
yield BuilderOutput(os.path.join(self.output_dir, 'nrfconnect', line), line)

0 commit comments

Comments
 (0)