diff --git a/src/icpp/commands_install_rust.py b/src/icpp/commands_install_rust.py index 0d39040..dbf3169 100644 --- a/src/icpp/commands_install_rust.py +++ b/src/icpp/commands_install_rust.py @@ -63,6 +63,13 @@ def install_wasi2ic(nstep: int, num_steps: int) -> None: ) cmd = f"git switch --detach {__version_wasi2ic__} " + run_shell_cmd_with_log( + LOG_FILE, + "a", + cmd, + cwd=config_default.RUST_COMPILER_ROOT / "wasi2ic", + timeout_seconds=TIMEOUT_SECONDS, + ) cmd = ( f"{config_default.CARGO} install " diff --git a/src/icpp/version_rust.py b/src/icpp/version_rust.py index be33aad..7ef1c39 100644 --- a/src/icpp/version_rust.py +++ b/src/icpp/version_rust.py @@ -6,4 +6,4 @@ """ -__version__ = "1.86.0" +__version__ = "1.93.0"