X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=_vim-example%2Finstall.ps1;h=0ac1b2c4e802c757e6ffde7fdd5c847a38ee32de;hb=07420f775e90d2acff6522c2155adf34273d130e;hp=1aaa85497a7f76d21b48322e82e083ab5c0d4ee2;hpb=82d7d2d05b6f882e7a6f7d5bd07ab12b06b2c2d2;p=webi-installers%2F.git diff --git a/_vim-example/install.ps1 b/_vim-example/install.ps1 index 1aaa854..0ac1b2c 100644 --- a/_vim-example/install.ps1 +++ b/_vim-example/install.ps1 @@ -1,7 +1,7 @@ #!/usr/bin/env pwsh IF (!(Test-Path -Path "$Env:USERPROFILE\.vim\pack\plugins\start")) { - New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force + New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force | out-null } Remove-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start\example" -Recurse -ErrorAction Ignore & git clone --depth=1 https://github.com/CHANGEME/example.git "$Env:USERPROFILE\.vim\pack\plugins\start\example"