There was an error while loading. Please reload this page.
1 parent 80cc0f1 commit e55c0cfCopy full SHA for e55c0cf
1 file changed
cmd/soroban-cli/src/commands/contract/build/container.rs
@@ -282,7 +282,12 @@ fn forwarded_build_args(
282
.strip_prefix(workspace_root)
283
.map(Path::to_path_buf)
284
.unwrap_or(abs);
285
- args.push(format!("--manifest-path={}", rel.display()));
+ let rel_posix = rel
286
+ .components()
287
+ .map(|c| c.as_os_str().to_string_lossy())
288
+ .collect::<Vec<_>>()
289
+ .join("/");
290
+ args.push(format!("--manifest-path={rel_posix}"));
291
}
292
if cmd.profile != "release" {
293
args.push(format!("--profile={}", cmd.profile));
0 commit comments