Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
madonuko committed Oct 10, 2023
1 parent 1960935 commit 69d71c3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ use tracing::trace;
use tracing_subscriber::{prelude::__tracing_subscriber_SubscriberExt, Layer};

fn main() -> Result<()> {
dotenvy::dotenv()?;
if let Err(e) = dotenvy::dotenv() {
if !e.not_found() {
return Err(e.into());
}
}

color_eyre::install()?;
let subscriber =
Expand Down
4 changes: 4 additions & 0 deletions tests/ng/katsu-iso.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ bootloader: grub
dnf:
releasever: 39
repodir: repodir/
options:
- --setopt=keepcache=True
- --nogpgcheck
- --setopt=cachedir=/var/cache/dnf
packages:
- dracut-config-generic
- dracut-live
Expand Down

0 comments on commit 69d71c3

Please sign in to comment.