diff options
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 4a93169..b0c378b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -137,7 +137,7 @@ fn main() -> anyhow::Result<()> { fs::copy( Path::new(file_name.trim_end_matches(".tar.xz")).join(kernel_path), - format!("vmlinuz-{}", arch), + format!("vmlinuz-{}", args.arch), )?; fs::remove_file(file_name)?; |