Files
lcbp3/.vscode/setup-terminal.ps1
T
admin a0f77ad121
CI / CD Pipeline / build (push) Successful in 5m20s
CI / CD Pipeline / deploy (push) Successful in 6m42s
690607:2321 ADR-035-135 #07
2026-06-07 23:21:55 +07:00

15 lines
342 B
PowerShell

# File: .vscode/setup-terminal.ps1
# Change Log:
# - 2026-06-07: Initial creation - bypass PSReadline history restoration
param(
[Parameter(Mandatory=$true)]
[string]$TargetPath
)
# Disable PSReadline history for this session
Set-PSReadlineOption -HistorySaveStyle SaveNothing
# Change to target directory
Set-Location $TargetPath