Skip to content

Commit

Permalink
Update gramine-sgx-akv-sign script to use tomli lib
Browse files Browse the repository at this point in the history
Recently, Gramine Python scripts switched from `toml` to `tomli`.

Signed-off-by: Sankaranarayanan Venkatasubramanian <[email protected]>
  • Loading branch information
svenkata9 authored and Dmitrii Kuvaiskii committed Dec 7, 2022
1 parent 49d2890 commit 88096b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Integrations/azure/akv-sign/gramine-sgx-akv-sign
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def main(output, libpal, key, url, manifest_file, sigfile, verbose):

expanded = manifest.expand_all_trusted_files()

with open(output, 'w', encoding='utf-8') as f:
with open(output, 'wb') as f:
manifest.dump(f)

if not sigfile:
Expand Down

0 comments on commit 88096b4

Please sign in to comment.