We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8cbfd7 commit b47155aCopy full SHA for b47155a
powershell-adapter/psDscAdapter/psDscAdapter.psm1
@@ -39,9 +39,9 @@ function Invoke-DscCacheRefresh {
39
40
$refreshCache = $false
41
42
- $cacheFilePath = Join-Path $env:LocalAppData "dsc" "PSAdapterCache.json"
+ $cacheFilePath = Join-Path $env:LocalAppData "dsc\PSAdapterCache.json"
43
if ($PSVersionTable.PSVersion.Major -le 5) {
44
- $cacheFilePath = Join-Path $env:LocalAppData "dsc" "WindowsPSAdapterCache.json"
+ $cacheFilePath = Join-Path $env:LocalAppData "dsc\WindowsPSAdapterCache.json"
45
}
46
if ($IsLinux -or $IsMacOS) {
47
$cacheFilePath = Join-Path $env:HOME "dsc" "PSAdapterCache.json"
0 commit comments