mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 14:28:42 +00:00
Migrate CI and builds to Just, add "full" builds (#660)
This commit is contained in:
parent
305bf8123d
commit
aea9df602c
30 changed files with 717 additions and 463 deletions
|
@ -9,8 +9,6 @@ use std::{
|
|||
use cfg_if::cfg_if;
|
||||
use tokio::process::Command;
|
||||
|
||||
use crate::TARGET;
|
||||
|
||||
cfg_if! {
|
||||
if #[cfg(target_os = "linux")] {
|
||||
mod linux;
|
||||
|
@ -56,7 +54,7 @@ pub async fn detect_targets() -> Vec<String> {
|
|||
{
|
||||
let target = get_target_from_rustc().await.unwrap_or_else(|| {
|
||||
guess_host_triple::guess_host_triple()
|
||||
.unwrap_or(TARGET)
|
||||
.unwrap_or(crate::TARGET)
|
||||
.to_string()
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue