We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93cb418 commit ce1ef8bCopy full SHA for ce1ef8b
install.ps1
@@ -7,6 +7,9 @@ Push-Location $envfetchPath
7
8
try {
9
$outFile = "envfetch.exe"
10
+ if ([System.IO.File]::Exists($outFile)) {
11
+ Write-Host "envfetch already exists. Updating..."
12
+ }
13
Invoke-WebRequest -Uri "https://github.com/ankddev/envfetch/releases/latest/download/envfetch-windows-amd64.exe" -OutFile $outFile
14
15
# Check integrity
0 commit comments