Skip to content

Commit

Permalink
fix reloading build in altvup
Browse files Browse the repository at this point in the history
  • Loading branch information
xxshady committed Feb 13, 2025
1 parent 1a0a188 commit 16e5e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion altvup/src/rust_module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ fn compile_rust_module(src_dir: &Path, cli_args: &[String]) -> anyhow::Result<()

let reloading = find_cli_param(cli_args, "reloading");
if reloading.is_some() {
args.push("--features reloading");
args.extend(["--features", "reloading"]);
}

let status = Command::new("cargo")
Expand Down

0 comments on commit 16e5e47

Please sign in to comment.