We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6180583 commit a46492cCopy full SHA for a46492c
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