Skip to content

Commit

Permalink
Fix logging of Rust installation
Browse files Browse the repository at this point in the history
  • Loading branch information
reuteras committed Jan 17, 2024
1 parent df844e7 commit 9719c40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup/install_rust_tools.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Write-Output "PowerShell.exe -ExecutionPolicy Bypass -File C:\Progress.ps1" | Ou
Write-DateLog "Install Rust tools in Sandbox." >> "C:\log\rust.txt"

Write-DateLog "Install GitBash (in the background)." >> "C:\log\rust.txt"
Install-GitBash
Install-GitBash >> "C:\log\rust.txt"
Write-DateLog "Install Rust." >> "C:\log\rust.txt"
Install-Rust
Install-Rust >> "C:\log\rust.txt"

# Set PATH to include Rust and Git
$env:PATH="C:\Rust\bin;$env:ProgramFiles\Git\bin;$env:ProgramFiles\Git\usr\bin;$env:PATH"
Expand Down

0 comments on commit 9719c40

Please sign in to comment.