We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e58954d commit 4334e91Copy full SHA for 4334e91
scripts/build/builders/nrf.py
@@ -239,6 +239,6 @@ def build_outputs(self):
239
def bundle_outputs(self):
240
if self.app == NrfApp.UNIT_TESTS:
241
return
242
- 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:
243
for line in filter(None, [x.strip() for x in f.readlines()]):
244
- yield BuilderOutput(os.path.join(self.output_dir, line), line)
+ yield BuilderOutput(os.path.join(self.output_dir, 'nrfconnect', line), line)
0 commit comments