From b50f83791ff6a5dc4a1aab3852a1f06bf7f443fe Mon Sep 17 00:00:00 2001 From: Luis Alberto Santos Date: Tue, 23 May 2023 19:16:21 +0200 Subject: [PATCH] fix powershell hotkey steps to match install script --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 41ac93e..3640969 100644 --- a/README.md +++ b/README.md @@ -108,14 +108,14 @@ Edit your profile to source it: Download the source script also: ```powershell -New-Item -Path $env:APPDATA\IntelliShell\Intelli-Shell\bin -Type Directory -Invoke-WebRequest -UseBasicParsing -URI "https://raw.githubusercontent.com/lasantosr/intelli-shell/main/intelli-shell.ps1" -OutFile $env:APPDATA\IntelliShell\Intelli-Shell\bin\intelli-shell.ps1 +New-Item -Path $env:APPDATA\IntelliShell\Intelli-Shell\data\bin -Type Directory +Invoke-WebRequest -UseBasicParsing -URI "https://raw.githubusercontent.com/lasantosr/intelli-shell/main/intelli-shell.ps1" -OutFile $env:APPDATA\IntelliShell\Intelli-Shell\data\bin\intelli-shell.ps1 ``` Edit your `$Profile` to execute it: ```powershell -. $env:APPDATA\IntelliShell\Intelli-Shell\bin\intelli-shell.ps1 +. $env:APPDATA\IntelliShell\Intelli-Shell\data\bin\intelli-shell.ps1 ```