Skip to content

Commit

Permalink
good enough
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Mar 25, 2024
1 parent e5e346b commit a6a967d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub enum Command {
}

impl Command {
/// Get the nixci [config::Config] associated with this subcommand
/// Get the [FlakeUrl] & nixci [config::Config] associated with this subcommand
pub async fn get_config(&self) -> anyhow::Result<(FlakeUrl, config::Config)> {
let flake_ref = match self {
Command::Build(build_cfg) => &build_cfg.flake_ref,
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pub async fn nixci(args: CliArgs) -> anyhow::Result<Vec<DrvOut>> {
cli::Command::DumpGithubActionsMatrix { systems, .. } => {
let matrix = github::matrix::GitHubMatrix::from(systems, &cfg.subflakes);
println!("{}", serde_json::to_string(&matrix)?);
// TODO: Return something meaningful, or break the function.
Ok(vec![])
}
}
Expand Down

0 comments on commit a6a967d

Please sign in to comment.