Ensure harness is built for target `deb`

next
Sayan Nandan 3 years ago
parent c7ae4b69e5
commit 80000adee3
No known key found for this signature in database
GPG Key ID: 8BC07A0A4D41DD52

@ -6,5 +6,5 @@ test: .harness
@${RUN_HARNESS} test
bundle: .harness
@${RUN_HARNESS} bundle
deb:
deb: .harness
@${RUN_HARNESS} deb

@ -44,7 +44,10 @@ pub fn install_deps() -> HarnessResult<()> {
"-c",
"sudo apt-get update && sudo apt install musl-tools -y"
),
_ => return Ok(()),
_ => {
info!("No additional dependencies required on this platform");
return Ok(());
}
},
None => return Ok(()),
};

Loading…
Cancel
Save