Skip to content

Commit 2916da5

Browse files
committed
adds debug logging
1 parent b76975e commit 2916da5

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

private/Alias-Helper.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ function Get-AliasFilePath {
99
$baseDir = $env:XDG_DATA_HOME ?? (Join-Path $HOME ".local/share")
1010
}
1111

12-
return Join-Path $baseDir "quickpath" "aliases.json"
12+
Write-Host "Base directory for aliases: $baseDir" -ForegroundColor Yellow
13+
$aliasFilePath = Join-Path $baseDir "quickpath" "aliases.json"
14+
Write-Host "Alias file path: $aliasFilePath" -ForegroundColor Yellow
15+
return $aliasFilePath
1316
}
1417

1518
function Import-Aliases {

0 commit comments

Comments
 (0)