diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index eba1853..65220a6 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -11,3 +11,4 @@ f6bc623284914489e891bbac923feb774c862b99 abbab3f8b477e917d0a175d0de23cce121096631 126347025f9cade241beff182738b2527da7535e 4740b836f300658b27e6ad4d79efac63c9c24c24 +be44bac95670b1cbbc91bd657882d985989846f9 diff --git a/scripts/build.ps1 b/scripts/build.ps1 index 813ff6f..634d246 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -27,7 +27,7 @@ .EXAMPLE .\build.ps1 -SourcesPath '~/custom/vendors.json' - Build cmder with your own packages. See vendor/sources.json for the syntax you need to copy. + Build Cmder with your own packages. See vendor/sources.json for the syntax you need to copy. .NOTES AUTHORS Samuel Vasko, Jack Bennett diff --git a/scripts/pack.ps1 b/scripts/pack.ps1 index a96ea04..00e8625 100644 --- a/scripts/pack.ps1 +++ b/scripts/pack.ps1 @@ -2,18 +2,18 @@ .Synopsis Pack Cmder .DESCRIPTION - Use this script to pack cmder into release archives + Use this script to pack Cmder into release archives You will need to make this script executable by setting your Powershell Execution Policy to Remote signed Then unblock the script for execution with UnblockFile .\pack.ps1 .EXAMPLE .\pack.ps1 - Creates default archives for cmder + Creates default archives for Cmder .EXAMPLE .\pack.ps1 -verbose - Creates default archives for cmder with plenty of information + Creates default archives for Cmder with plenty of information .NOTES AUTHORS Samuel Vasko, Jack Bennett, Martin Kemp diff --git a/scripts/utils.ps1 b/scripts/utils.ps1 index 2b81a70..5895540 100644 --- a/scripts/utils.ps1 +++ b/scripts/utils.ps1 @@ -172,13 +172,13 @@ function Register-Cmder() { # Text for the context menu item. $MenuText = "Cmder Here" - , # Defaults to the current cmder directory when run from cmder. + , # Defaults to the current Cmder directory when run from Cmder. $PathToExe = (Join-Path $env:CMDER_ROOT "cmder.exe") , # Commands the context menu will execute. $Command = "%V" - , # Defaults to the icons folder in the cmder package. + , # Defaults to the icons folder in the Cmder package. $icon = (Split-Path $PathToExe | Join-Path -ChildPath 'icons/cmder.ico') ) Begin