Skip to content

Commit 852bf5f

Browse files
committed
Path fix
For some reason *this* particular one needs the slashes to be reversed. Strike me where I stand.
1 parent 1b140c5 commit 852bf5f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/renconstruct/tasks.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,9 @@ pub fn task_keystore_pre(ctx: &TaskContext, options: &KeystoreOptions) -> Result
347347
options.alias.clone().unwrap_or("android".to_string()),
348348
password,
349349
password,
350-
canonicalize_normalized(android_path)?.to_string_lossy(),
350+
canonicalize_normalized(android_path)?
351+
.to_string_lossy()
352+
.replace("\\", "/"),
351353
ctx.renpy_path.to_string_lossy()
352354
);
353355
fs::write(&local_properties_path, &property_contents)?;

0 commit comments

Comments
 (0)