From 2fb12e8d0f99f7b00aa1665352651073cf041675 Mon Sep 17 00:00:00 2001 From: Kitty Fangs Date: Tue, 7 May 2024 07:54:32 +0000 Subject: [PATCH] fix: another init.ps1 fix --- init.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.ps1 b/init.ps1 index 8aa2bce..4772a53 100644 --- a/init.ps1 +++ b/init.ps1 @@ -4,7 +4,7 @@ # Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://stash.firekitten.net/kittyfangs/dotfiles/raw/branch/main/init.ps1')) ## Make sure we have git -if ((Get-Command -Type Application -ErrorAction SilentlyContinue git) -ne $null) +if ((Get-Command -Type Application -ErrorAction SilentlyContinue git) -eq $null) { Write-Host "Please install git first" }