Skip to content

Commit 884a2ab

Browse files
committed
Add missing rustc metadata override for lightning_types
This should resolve non-determinism in builds.
1 parent 3e6f522 commit 884a2ab

File tree

1 file changed

+1
-1
lines changed
  • deterministic-build-wrappers

1 file changed

+1
-1
lines changed

deterministic-build-wrappers/rustc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ IS_LIGHTNING=false
1010
for ((i=0; i<"${#args[@]}"; ++i)); do
1111
case ${args[i]} in
1212
--crate-name)
13-
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
13+
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
1414
IS_LIGHTNING=true
1515
fi
1616
;;

0 commit comments

Comments
 (0)