Browse Source

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.
pull/9/head
AzureMarker 3 years ago
parent
commit
ee8eec9338
No known key found for this signature in database
GPG Key ID: 47A133F3BF9D03D3
  1. 2
      src/main.rs

2
src/main.rs

@ -284,7 +284,7 @@ fn build_3dsx(config: &CTRConfig) {
// If romfs directory exists, automatically include it // If romfs directory exists, automatically include it
if Path::new("./romfs").is_dir() { if Path::new("./romfs").is_dir() {
process = process.arg("--romfs=\"./romfs\""); process = process.arg("--romfs=./romfs");
} }
let mut process = process let mut process = process

Loading…
Cancel
Save