From 3a11042e4c7015f37b75e7d86de49375bc7bbda8 Mon Sep 17 00:00:00 2001 From: 8LWXpg <105704427+8LWXpg@users.noreply.github.com> Date: Mon, 13 May 2024 05:22:28 +0800 Subject: [PATCH] docs: fix function in PowerShell at quick start (#64) --- docs/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index 22168550..fca53827 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -72,7 +72,7 @@ function yy { yazi $args --cwd-file="$tmp" $cwd = Get-Content -Path $tmp if (-not [String]::IsNullOrEmpty($cwd) -and $cwd -ne $PWD.Path) { - Set-Location -Path $cwd + Set-Location -LiteralPath $cwd } Remove-Item -Path $tmp }