From 1f821376d1214f355867cafa96d7f5999a14ba97 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Tue, 27 Aug 2024 13:57:26 +0200 Subject: [PATCH] append '-config' to temp program storage (example conflict: $TMP/nvim) --- install_windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_windows.ps1 b/install_windows.ps1 index a2750b7..2df19c3 100644 --- a/install_windows.ps1 +++ b/install_windows.ps1 @@ -82,7 +82,7 @@ function ProcessUrlFiles # Create temporary directory for curl $appname = $sourceDir.Split('\')[-1] - $tmpApp = "$env:TMP\$appname" + $tmpApp = "$env:TMP\$appname-config" if (-not (Test-Path $tmpApp)) { New-Item -ItemType Directory -Path $tmpApp }