Skip to content

Commit

Permalink
Fix toml generator script
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
WardBrian committed Feb 1, 2023
1 parent 7399404 commit bb3da39
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions julia/updateArtifacts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ data = Dict(
"bridgestan" => Dict(
"git-tree-sha1" => Tar.tree_hash(IOBuffer(inflate_gzip(filename))),
"lazy" => true,
"download" => Dict(
"sha256" => bytes2hex(open(sha256, filename)),
"url" => string(
"https://github.com/roualdes/bridgestan/releases/download/",
version,
"/",
filename,
"download" => [
Dict(
"sha256" => bytes2hex(open(sha256, filename)),
"url" => string(
"https://github.com/roualdes/bridgestan/releases/download/",
version,
"/",
filename,
),
),
),
],
),
)

Expand Down

0 comments on commit bb3da39

Please sign in to comment.