switch to bash when possible
Build Mumble Web 2 release builder containers / windows-release-builder-container-build (push) Successful in 1m25s

This commit is contained in:
2025-12-02 18:04:00 -07:00
parent 36174cff18
commit 387c2f9551
+4 -1
View File
@@ -41,7 +41,10 @@ RUN Set-ExecutionPolicy Bypass -Scope Process; `
# Install Git and Rustup via Chocolatey
RUN choco install git -y --no-progress; `
choco install rustup.install -y --no-progress
choco install rustup.install -y --no-progress; `
choco install bash -y --no-progress
SHELL ["bash"]
# Install stable Rust toolchain
RUN rustup toolchain install stable-x86_64-pc-windows-msvc; `