summaryrefslogtreecommitdiff
path: root/install.ps1
AgeCommit message (Collapse)Author
2023-09-22fix(installation): bump MinRustVersion to 1.70d1t2
Since #1633 porting to Clap, min Rust version reqirement changes.
2023-06-15fix: install into $home on windows for nowliv
Stopgap measure so that people stop installing into System32 (since that's the default Powershell elevated prompt directory for some reason).
2022-04-20chore: bump minimum required rust version in installsmokou
2020-11-05fix(installation): Update the MinRustVersionCaleb Webber
closes #577df Co-authored-by: Caleb Webber <seeplusplus@users.noreply.github.com>
2020-08-27chore: Removed extra whitespacesKoalab99
Co-authored-by: Corentin ARNOULD <corentin.arn@gmail.com>
2020-02-27fix: Re-add cloning the repo to install scriptsmokou
2020-02-26feat: Add clippy lintsMario Reder
- adds a new 'clippy' category for exercises - clippy exercises should throw no warnings - install script now also installs clippy is related to https://github.com/rust-lang/rust-clippy/issues/2604
2019-10-22remove execution policy checkGeorge Doenlen
2019-10-22Add basic windows install script.George Doenlen
Adds a powershell install script for windows users that are at least running powershell 5. It is almost a direct port of install.sh. This would be used to automatically download the script much like curl | bash, but with: `Invoke-WebRequest https://urltoscript.com | Select-Object -ExpandProperty Content | Out-File $env:TMP/install_rustlings.ps1; Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression $env:TMP/install_rustlings.ps1`