Skip to content

Commit ab31379

Browse files
committed
fix manifest.json construction
1 parent 15ecc39 commit ab31379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update-espwebtools-manifest.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
manifest = JSON.parse(res.body)
1212
puts manifest
1313
build = manifest['builds'].detect{|b| b['chipFamily'] == ENV['CHIP_FAMILY']}
14-
build['parts'] = { path: ENV['RELEASE_IMAGE_URI'], offset: 0 }
14+
build['parts'] = [{ path: ENV['RELEASE_IMAGE_URI'], offset: 0 }]
1515
puts manifest
1616
File.write('assets/manifest.json', JSON.dump(manifest))

0 commit comments

Comments
 (0)