From ee8eec933852b3b5145a1d654423939760b47d55 Mon Sep 17 00:00:00 2001 From: AzureMarker Date: Sat, 22 Jan 2022 18:05:15 -0800 Subject: [PATCH] Fix romfs error "Cannot open dir" The parentheses weren't understood by 3dsxtool. Normally they're just a shell thing anyway, and aren't needed when we're directly constructing a process's argument array. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e2d2f69..a0569b3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -284,7 +284,7 @@ fn build_3dsx(config: &CTRConfig) { // If romfs directory exists, automatically include it if Path::new("./romfs").is_dir() { - process = process.arg("--romfs=\"./romfs\""); + process = process.arg("--romfs=./romfs"); } let mut process = process