From 67de97a492c9389f95499db38f9474a1c20ec585 Mon Sep 17 00:00:00 2001 From: Jackbennett Date: Tue, 24 May 2016 15:43:25 +0100 Subject: [PATCH] Indent parameters for Path clarity --- scripts/utils.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/utils.ps1 b/scripts/utils.ps1 index 548eef2..cf33725 100644 --- a/scripts/utils.ps1 +++ b/scripts/utils.ps1 @@ -83,10 +83,10 @@ function Register-Cmder(){ } Process { - New-Item -Path "HKCR:\Directory\Shell\Cmder" -Force -Value $MenuText + New-Item -Path "HKCR:\Directory\Shell\Cmder" -Force -Value $MenuText New-ItemProperty -Path "HKCR:\Directory\Shell\Cmder" -Force -Name "Icon" -Value `"$icon`" New-ItemProperty -Path "HKCR:\Directory\Shell\Cmder" -Force -Name "NoWorkingDirectory" - New-Item -Path "HKCR:\Directory\Shell\Cmder\Command" -Force -Value "`"$PathToExe`" `"$Command`" " + New-Item -Path "HKCR:\Directory\Shell\Cmder\Command" -Force -Value "`"$PathToExe`" `"$Command`" " } }