Skip to content

Commit

Permalink
Merge pull request #6 from ofirgalcon/patch-2
Browse files Browse the repository at this point in the history
Update applications.py
  • Loading branch information
bochoven authored Jan 25, 2021
2 parents d18fec0 + f7d512b commit c8e6aaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def flatten_applications_info(array):
device['signed_by'] = obj[item][0]
elif item == 'has64BitIntelCode' and obj[item] == 'yes':
device['has64bit'] = 1
elif item == 'arch_kind' and (obj[item] == 'arch_i64' or obj[item] == 'arch_i32_i64'):
elif item == 'arch_kind' and (obj[item] == 'arch_i64' or obj[item] == 'arch_i32_i64' or obj[item] == 'arch_arm_i64' or obj[item] == 'arch_ios'):
device['has64bit'] = 1
out.append(device)
return out
Expand Down

0 comments on commit c8e6aaf

Please sign in to comment.