Skip to content

Commit

Permalink
Merge pull request #129 from TheBlueMatt/main
Browse files Browse the repository at this point in the history
Add missing `rustc` `metadata` override for `lightning_types`
  • Loading branch information
TheBlueMatt authored Sep 5, 2024
2 parents 3e6f522 + 884a2ab commit 0cb2569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deterministic-build-wrappers/rustc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ IS_LIGHTNING=false
for ((i=0; i<"${#args[@]}"; ++i)); do
case ${args[i]} in
--crate-name)
if [ "${args[i+1]}" = "lightning" -o "${args[i+1]}" = "lightning_background_processor" -o "${args[i+1]}" = "lightning_invoice" -o "${args[i+1]}" = "lightning_persister" -o "${args[i+1]}" = "lightning_rapid_gossip_sync" -o "${args[i+1]}" = "ldk" ]; then
if [ "${args[i+1]}" = "lightning" -o "${args[i+1]}" = "lightning_types" -o "${args[i+1]}" = "lightning_background_processor" -o "${args[i+1]}" = "lightning_invoice" -o "${args[i+1]}" = "lightning_persister" -o "${args[i+1]}" = "lightning_rapid_gossip_sync" -o "${args[i+1]}" = "ldk" ]; then
IS_LIGHTNING=true
fi
;;
Expand Down

0 comments on commit 0cb2569

Please sign in to comment.