Fixes for prior commit

This commit is contained in:
Luke Parker
2024-03-23 22:22:24 -04:00
parent 333a9571b8
commit 1f92e1cbda
3 changed files with 20 additions and 12 deletions

View File

@@ -55,11 +55,9 @@ CMD ["/run.sh"]
network.label(),
);
let run = crate::os(
os,
if os == Os::Alpine { "RUN apk --no-cache add gcompat" } else { "" },
"monero",
) + &run_monero;
let run =
crate::os(os, if os == Os::Alpine { "RUN apk --no-cache add gcompat" } else { "" }, "monero") +
&run_monero;
let res = setup + &run;
let mut monero_path = orchestration_path.to_path_buf();