cleanup: */install.ps1 add out-null to all New-Item calls
authorAJ ONeal <aj@therootcompany.com>
Mon, 26 Apr 2021 07:10:08 +0000 (07:10 +0000)
committerAJ ONeal <aj@therootcompany.com>
Mon, 26 Apr 2021 07:10:08 +0000 (07:10 +0000)
46 files changed:
_example/install.ps1
_vim-example/install.ps1
_webi/bootstrap.ps1
_webi/webi-pwsh.ps1
arc/install.ps1
awless/install.ps1
caddy/install.ps1
chromedriver/install.ps1
comrak/install.ps1
dotenv-linter/install.ps1
dotenv/install.ps1
ffmpeg/install.ps1
git/install.ps1
gitdeploy/install.ps1
golang/install.ps1
goreleaser/install.ps1
k9s/install.ps1
keypairs/install.ps1
kubectx/install.ps1
kubens/install.ps1
lf/install.ps1
lsd/install.ps1
mutagen/install.ps1
nerdfont/install.ps1
pandoc/install.ps1
rclone/install.ps1
rg/install.ps1
sass/install.ps1
sclient/install.ps1
sd/install.ps1
serviceman/install.ps1
shfmt/install.ps1
ssh-utils/ssh-pubkey.ps1
syncthing/install.ps1
vim-ale/install.ps1
vim-devicons/install.ps1
vim-go/install.ps1
vim-lastplace/install.ps1
vim-nerdtree/install.ps1
vim-prettier/install.ps1
vim-sensible/install.ps1
vim-shfmt/install.ps1
vim-syntastic/install.ps1
watchexec/install.ps1
xz/install.ps1
yq/install.ps1

index 8ecff300253f86604b45356b44b7795cb2708b79..c3547e350716d2fa772aca515298eb3ec827fc63 100644 (file)
@@ -49,7 +49,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\foobar-*\foo.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 1aaa85497a7f76d21b48322e82e083ab5c0d4ee2..0ac1b2c4e802c757e6ffde7fdd5c847a38ee32de 100644 (file)
@@ -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"
index ace4f3a7a388d931e21f305b35b629ba09c48e56..b6ebd84e6bec1b420bf6f9ecd24b26a68bbeb17a 100644 (file)
@@ -1,5 +1,5 @@
 # Download the latest webi, then install {{ exename }}
-New-Item -Path .local\bin -ItemType Directory -Force
+New-Item -Path .local\bin -ItemType Directory -Force | out-null
 IF ($Env:WEBI_HOST -eq $null -or $Env:WEBI_HOST -eq "") { $Env:WEBI_HOST = "https://webinstall.dev" }
 curl.exe -s -A "windows" "$Env:WEBI_HOST/packages/_webi/webi-pwsh.ps1" -o "$Env:USERPROFILE\.local\bin\webi-pwsh.ps1"
 Set-ExecutionPolicy -Scope Process Bypass
index 8fca7f2839b06bf38e3a0a68354a9ef6ba8e7130..f9aa66da0fb9777a26ae249863b8d572dec11192 100644 (file)
@@ -25,9 +25,9 @@ $exename = $args[0]
 pushd $Env:USERPROFILE
 
 # Make paths if needed
-New-Item -Path .local\bin -ItemType Directory -Force
+New-Item -Path .local\bin -ItemType Directory -Force | out-null
 # TODO replace all xbin with opt\bin\
-New-Item -Path .local\xbin -ItemType Directory -Force
+New-Item -Path .local\xbin -ItemType Directory -Force | out-null
 
 # See note on Set-ExecutionPolicy above
 Set-Content -Path .local\bin\webi.bat -Value "@echo off`r`npushd %USERPROFILE%`r`npowershell -ExecutionPolicy Bypass .local\bin\webi-pwsh.ps1 %1`r`npopd"
@@ -35,12 +35,12 @@ Set-Content -Path .local\bin\webi.bat -Value "@echo off`r`npushd %USERPROFILE%`r
 Remove-Item -Path .local\bin\webi.ps1 -Recurse -ErrorAction Ignore
 if (!(Test-Path -Path .local\opt))
 {
-    New-Item -Path .local\opt -ItemType Directory -Force
+    New-Item -Path .local\opt -ItemType Directory -Force | out-null
 }
 # TODO windows version of mktemp -d
 if (!(Test-Path -Path .local\tmp))
 {
-    New-Item -Path .local\tmp -ItemType Directory -Force
+    New-Item -Path .local\tmp -ItemType Directory -Force | out-null
 }
 
 # TODO SetStrictMode
index f29c4430252d494857b0c15b13b72935aed7fad3..4d4343a6c7c84a3b87fcde07c314b7dcc4564e32 100644 (file)
@@ -43,7 +43,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path "arc.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index dbd7a095e6a408f7f4b07ce2531048f65edf5701..bee791b5b583a4251d00340bd1ee2c6f366e19fe 100644 (file)
@@ -44,7 +44,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd")) {
 
     # Settle unpacked archive into place
     echo "Install Location: $pkg_src_cmd"
-    New-Item "$pkg_src_bin" -ItemType Directory -Force
+    New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
     Move-Item -Path ".\awless.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
@@ -53,5 +53,5 @@ IF (!(Test-Path -Path "$pkg_src_cmd")) {
 
 echo "Copying into '$pkg_dst_cmd' from '$pkg_src_cmd'"
 Remove-Item -Path "$pkg_dst_cmd" -Recurse -ErrorAction Ignore | out-null
-New-Item "$pkg_dst_bin" -ItemType Directory -Force
+New-Item "$pkg_dst_bin" -ItemType Directory -Force | out-null
 Copy-Item -Path "$pkg_src" -Destination "$pkg_dst" -Recurse
index 76de03a8222f0412a74e21001bd6873cdbd5e207..395849e0adc61c2daf366b207344634f82841d5a 100644 (file)
@@ -44,7 +44,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd")) {
 
     # Settle unpacked archive into place
     echo "Install Location: $pkg_src_cmd"
-    New-Item "$pkg_src_bin" -ItemType Directory -Force
+    New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
     Move-Item -Path ".\caddy.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
@@ -53,5 +53,5 @@ IF (!(Test-Path -Path "$pkg_src_cmd")) {
 
 echo "Copying into '$pkg_dst_cmd' from '$pkg_src_cmd'"
 Remove-Item -Path "$pkg_dst_cmd" -Recurse -ErrorAction Ignore | out-null
-New-Item "$pkg_dst_bin" -ItemType Directory -Force
+New-Item "$pkg_dst_bin" -ItemType Directory -Force | out-null
 Copy-Item -Path "$pkg_src" -Destination "$pkg_dst" -Recurse
index 6e6f0e3df2fff932efdd3e2911c40116886c32d8..fa21f953f90e1fd3ff6b410b7b375f664611f1e8 100644 (file)
@@ -48,7 +48,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\chromedriver-*\chromedriver.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 970bfccffeae1b1386e9b5ff633aef8ba8866f5a..b809652166ce7c91bc00d280e5709619f58c29b2 100644 (file)
@@ -28,7 +28,7 @@ IF (!(Test-Path -Path "$Env:USERPROFILE\.local\opt\$Env:PKG_NAME-v$Env:WEBI_VERS
         # Settle unpacked archive into place
         echo "New Name: $VERNAME"
         echo "New Location: $Env:USERPROFILE\.local\opt\$Env:PKG_NAME-v$Env:WEBI_VERSION\bin\$VERNAME"
-        New-Item "$Env:USERPROFILE\.local\opt\$Env:PKG_NAME-v$Env:WEBI_VERSION\bin" -ItemType Directory -Force
+        New-Item "$Env:USERPROFILE\.local\opt\$Env:PKG_NAME-v$Env:WEBI_VERSION\bin" -ItemType Directory -Force | out-null
         Move-Item -Path "$VERNAME" -Destination "$Env:USERPROFILE\.local\opt\$Env:PKG_NAME-v$Env:WEBI_VERSION\bin"
 
     # Exit tmp
index 3327489544a97a05793d8b320470552c02f5a8fa..8403a5937dbb8978da9657d7ba8ebef3e7b87e55 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\dotenv-linter.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 6957350b29931c1f81f4514ab61e8ffa3b75f2be..2b19a4f77558a884ebddf81f34dba125eaf32efa 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\dotenv.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 57c405fead16fd69ef6cd5afa307b9c286bd31de..e94dce05a9717920a0088bccbe69a3412ab7d31a 100644 (file)
@@ -39,7 +39,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path "$pkg_download" -Destination "$pkg_src_cmd" -Force
 
     # Exit tmp
index 1867075cea660e73e051309c46e202186f612d1b..3c4a21829dc34ff2167d837c122c0aabbd09ce67 100644 (file)
@@ -33,7 +33,7 @@ IF (!(Test-Path -Path "$pkg_src"))
         # Windows BSD-tar handles zip. Imagine that.
         echo "Unpacking $pkg_download"
         IF (!(Test-Path -Path "$pkg_cmd_name-v$Env:WEBI_VERSION")) {
-            New-Item -Path "$pkg_cmd_name-v$Env:WEBI_VERSION" -ItemType Directory -Force
+            New-Item -Path "$pkg_cmd_name-v$Env:WEBI_VERSION" -ItemType Directory -Force | out-null
         }
         ($none = pushd "$pkg_cmd_name-v$Env:WEBI_VERSION")  | out-null
             & tar xf "$pkg_download"
index 09e7e42049ae1aa600ce240ae594e8b432255223..b10d7539bdbbbb0ad3d984ee8ad706fedefd683c 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\gitdeploy.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 15b9fa73fcbd1234642de11ebdf4de7f98bfccea..bd32608cd5b80aea6e0f575bfc34d5f3c0839e4a 100644 (file)
@@ -54,7 +54,7 @@ IF (!(Test-Path -Path "$pkg_src"))
 echo "Copying into '$pkg_dst' from '$pkg_src'"
 Remove-Item -Path "$pkg_dst" -Recurse -ErrorAction Ignore
 Copy-Item -Path "$pkg_src" -Destination "$pkg_dst" -Recurse
-IF (!(Test-Path -Path go\bin)) { New-Item -Path go\bin -ItemType Directory -Force }
+IF (!(Test-Path -Path go\bin)) { New-Item -Path go\bin -ItemType Directory -Force | out-null }
 
 # Special to go: re-run all go tooling builds
 echo "Building go language tools..."
index e47706f5f813081d41b2ac22a7a56de97fcb8594..111b82613ec75bcd970c43400b92b88905919f5b 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\goreleaser.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 9a313a5133f4e0731033a1ec592b7cacdad6d755..5bb6746bcff53a40468bd10ec613bc3e777b38c1 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path "k9s.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 1ea1097fdf99fa03d60f20e9a072ad2659f503f8..49430431d0d369df9e35fb10e5001efec395aea4 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\keypairs.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index b30c92ddeaa867070b766ee1e01da4e7da124831..3453472c87a2ea61066943190d4448f087462f6b 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path "kubectx.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index b7a40954900038bd6677b579fa787f91d62881f8..848d7fb2ba70db38060963965d28f20054deb9d4 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path "kubens.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index c3cc37b13212730892475c67e3f6d82a43081840..f6a57769455c0c8c751e751243c996c24f2b45ad 100644 (file)
@@ -35,7 +35,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         & tar xf "$pkg_download"
 
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\lf.exe" -Destination "$pkg_src_bin"
 
     popd
index bc74e442f192ba81222000ebd1b58a8c9f15636d..4867b5461e795160dc1279da86a869460a0b4d59 100644 (file)
@@ -46,7 +46,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\lsd-*\lsd.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index dc1747c2a19f78f0af423532e16a2284f4d5c2b5..67a798ea078dc498366d12a1f608e0d50de57ab6 100644 (file)
@@ -35,7 +35,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         & tar xf "$pkg_download"
 
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_dir" -ItemType Directory -Force
+        New-Item "$pkg_src_dir" -ItemType Directory -Force | out-null
         Move-Item -Path ".\*" -Destination "$pkg_src_dir"
 
     popd
index 668c7585a3ccbdac109632e09a6d36f7f9a5437f..9157d1f0947804a8469438cb35cafc3f652fc812 100644 (file)
@@ -3,7 +3,7 @@
 $my_nerdfont_otf = "Droid Sans Mono for Powerline Nerd Font Complete Windows Compatible.otf"
 $my_fontdir = "$Env:UserProfile\AppData\Local\Microsoft\Windows\Fonts"
 
-New-Item -Path "$my_fontdir" -ItemType Directory -Force
+New-Item -Path "$my_fontdir" -ItemType Directory -Force | out-null
 IF (!(Test-Path -Path "$my_fontdir\$my_nerdfont_otf"))
 {
 
index 709e9106436e603b90700a5934527d827b1fe7b1..4a83d0f072dac0ed1c0e6056833f45696f5194be 100644 (file)
@@ -46,7 +46,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\pandoc-*\pandoc.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index b5ffa1460f9ad71111763bb4cdda509b11b128f7..741dca7bcf2c8b08053f2269b9a0cb20738d6826 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\rclone.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index f6da869fdb49843211cdb171f5fdcc48daddcda8..190f8b959ff2c43b56c3ec967d6b6f4db508f1c2 100644 (file)
@@ -46,7 +46,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\ripgrep-*\rg.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index bd9fd357326b015dafc662dfb79c1f2876091c1f..5fc47ef071b28407c1012ed231deb9bce0cf87f3 100644 (file)
@@ -40,7 +40,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         & tar xf "$pkg_download"
 
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force > $null
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null > $null
         Move-Item -Path ".\dart-sass\*" -Destination "$pkg_src_dir"
 
     # Exit tmp
index 1b0b216fd3dcc459b7fa44d0bea39611ef8f1271..cd889db714adfa3b9227edccddf6d22d065aa3fc 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\sclient.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index ca86b8abc098854db25a22d5841cee4660d556a8..4ef0608634801fda466cb3fa8aaaaedc7730e695 100644 (file)
@@ -46,7 +46,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path "b\*\release\sd.exe" -Destination "$pkg_src_bin"
     # Exit tmp
     popd
index 2eec924919b5aca4f8bb1eaff4354c42bded1db5..8efa0abeaff03bcfc10d48abd1f8623f41b80fc7 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\serviceman.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 29d262784c81f41e3a977aaaf921759ebaf543b3..7b4c44a8de1e873d3a777926b534ab05d9ea8ed7 100644 (file)
@@ -35,7 +35,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         & tar xf "$pkg_download"
 
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\shfmt-*\shfmt.exe" -Destination "$pkg_src_bin"
 
     popd
index e323496072163c09f2d9f547867fb3c638048fb6..e86a858f07a6e5fdc446465bcf9062f4e0866da0 100644 (file)
@@ -5,7 +5,7 @@
 
 if (!(Test-Path -Path "$Env:USERPROFILE/.ssh"))
 {
-    New-Item -Path "$Env:USERPROFILE/.ssh" -ItemType Directory -Force
+    New-Item -Path "$Env:USERPROFILE/.ssh" -ItemType Directory -Force | out-null
     #& icacls "$Env:USERPROFILE/.ssh" /inheritance:r
     #& icacls "$Env:USERPROFILE/.ssh" /grant:r "$Env:USERNAME":"(F)"
 }
index db8224ac141bfde64367f03eedcb8da37310cfb4..08472344e44d84cebc9c09b05bb11e2bc29ae6ac 100644 (file)
@@ -45,7 +45,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\syncthing*\syncthing.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 5132639588b26bf350f7abd334c7fe6e5741ed4e..46b4758fb410f5cf0ef04d3dc5dc9c2b85a70765 100644 (file)
@@ -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\ale" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/dense-analysis/ale.git "$Env:USERPROFILE\.vim\pack\plugins\start\ale"
index 6a8f0820f973710dd73bee499947e22b05d3bfd2..e96c2dba3bbee017e492748802ba3b768a31c6f8 100644 (file)
@@ -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\devicons" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/ryanoasis/vim-devicons.git "$Env:USERPROFILE\.vim\pack\plugins\start\devicons.vim"
index ff2f7d4a583ea3cdca31a643e2606d33e6f123b1..617ae33479b938b06535ca7a142dafe2af90c4cd 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env pwsh
 
-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\vim-go" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/fatih/vim-go.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-go"
index 749d400fda92f9d7914ea448ff691b38444143a9..5a41edb77cce1dff6daea50b5f9932a8353a02e3 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env pwsh
 
-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\vim-lastplace" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/farmergreg/vim-lastplace.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-lastplace"
index 2f0ab09ecd8d4992589cfb4672ecac1d7937b22d..7d099a8d49a060889568cd6c828cb2a5c2b6dc54 100644 (file)
@@ -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\nerdtree" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/preservim/nerdtree.git "$Env:USERPROFILE\.vim\pack\plugins\start\nerdtree.vim"
index 54883016ab0691f3af1431c0a35ac314411242dd..a45750e33931eaec5d47b1b93e42926abe9ef654 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env pwsh
 
-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\vim-prettier" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/prettier/vim-prettier.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-prettier"
index bcf03f546470f9c541f96b293e0ff24776636de8..4e460513bdd02fab47ce49a7b585d627885ad9f4 100644 (file)
@@ -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\vim-sensible" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://tpope.io/vim/sensible.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-sensible"
index d88992279ff0d0a995f12d5ab430b5eebe4b8769..2c811d08cbe30024ca0c9e111ea56dfa870f996a 100644 (file)
@@ -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\shfmt" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/z0mbix/vim-shfmt.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-shfmt"
index 7e7127ce61ac998e50c5585da886e0512917e46e..95206856dce4c81e7b11dbd67f060bf603566d83 100644 (file)
@@ -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\vim-syntastic" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/vim-syntastic/syntastic.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-syntastic"
index bdc6765bc5a3a0f8d0ed079e8d196ce2b825b068..375e786202cb59c2401d42384ee3c142b6cb4e6e 100644 (file)
@@ -43,7 +43,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\watchexec-*\watchexec.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index df9e55f63e3448e26cfbf27edcc48e915d38d89d..38430e4eedc3a263887c58df5a391e43e49f2953 100644 (file)
@@ -39,7 +39,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\bin_x86-64\xz.exe" -Destination "$pkg_src_bin"
         Move-Item -Path ".\bin_x86-64\xzdec.exe" -Destination "$pkg_src_bin"
         Copy-Item -Path "$pkg_src_bin\xzdec.exe" -Destination "$pkg_src_bin\unxz.exe"
index a9e9b0db0535732c3c2dc0bd175e65e8bae30242..5aa5d931b8c380b316593c8d5db11d8a6e1fa425 100644 (file)
@@ -31,7 +31,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         & tar xf "$pkg_download"
 
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\yq.exe" -Destination "$pkg_src_bin"
 
     popd