blob: c73f27773c26add7a945b8415144ec1ce83022c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// nixos-config - My current NixOS configuration
//
// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This file is part of my nixos-config.
//
// You should have received a copy of the License along with this program.
// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
use std::process::Command;
use anyhow::{bail, Context, Result};
use clap::{CommandFactory, Parser};
pub mod cli;
use crate::cli::CliArgs;
fn main() -> Result<(), anyhow::Error> {
clap_complete::CompleteEnv::with_factory(CliArgs::command).complete();
let args = CliArgs::parse();
let command = args.command.first().map_or("flake", String::as_str);
{
let args = if args.command.len() > 1 {
&args.command[1..]
} else {
&[]
};
// println!("Running: `fupdate-{command} {}`", args.join(" "));
let child = Command::new(format!("fupdate-{command}"))
.args(args)
.status()
.with_context(|| format!("Failed to spawn `fupdate-{command}`"))?;
if !child.success() {
bail!("Command `fupdate-{command} {}` failed!", args.join(" "));
}
}
Ok(())
}
#[test]
fn verify_cli() {
CliArgs::command().debug_assert();
}
|