Skip to content

Commit

Permalink
Fix argument order in dr_args vector
Browse files Browse the repository at this point in the history
  • Loading branch information
korewaChino committed Nov 21, 2023
1 parent f61ed6a commit d6c5b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ impl IsoBuilder {
// combine them all into one string

let dr_args2 =
vec!["--nomdadmconf", "--nolvmconf", "-vfN", "-a", &dr_mods, "-o", &dr_extra_args];
vec!["--nomdadmconf", "--nolvmconf", "-vfN", "-a", &dr_mods, &dr_extra_args];
let mut dr_args = vec![];

dr_args.extend(dr_basic_args);
Expand Down

0 comments on commit d6c5b9c

Please sign in to comment.