mirror of
https://github.com/rbreaves/kinto.git
synced 2025-06-30 01:51:43 +02:00

* - Added commented out sublime text keymaps for VS Code under Windows * - Added cmd.exe to kinto.ahk for Windows * - Added support for Fluent Terminal on Windows * - Firefox paste fix for Windows * - Added Sublime hotkeys to VS Code to setup for windows * - Added refresh of environment variables after possible package installs on Windows
16 lines
539 B
PowerShell
16 lines
539 B
PowerShell
$testchoco = powershell choco -v
|
|
if(-not($testchoco)){
|
|
Write-Output "Seems Chocolatey is not installed, installing now"
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
|
}
|
|
else{
|
|
Write-Output "Chocolatey Version $testchoco is already installed"
|
|
}
|
|
|
|
if(-not(test-path "C:\Program Files\AutoHotkey\AutoHotkey.exe")){
|
|
choco install autohotkey.install
|
|
}
|
|
if(-not(test-path "C:\Strawberry\")){
|
|
choco install strawberryperl
|
|
}
|