changes made
authorPratyush Saxema <devil_geek@yahoo.com>
Mon, 7 Sep 2020 06:31:15 +0000 (12:01 +0530)
committerPratyush Saxema <devil_geek@yahoo.com>
Mon, 7 Sep 2020 10:50:37 +0000 (16:20 +0530)
changes made as per request

all set

comrak/install.ps1
git/install.ps1
golang/install.ps1
lsd/install.ps1
nerdfont/install.ps1
rg/install.ps1
ssh-utils/ssh-pubkey.ps1
vim-go/install.ps1
vim-sensible/install.ps1
vim-syntastic/install.ps1

index 9bd322ef2d80f3f3d60a59979f8390bf527d8758..d1ec56e71f61176bd8031f2a8274aac78d97dd7b 100644 (file)
@@ -29,7 +29,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
+        New-Item "$Env:USERPROFILE\.local\opt\$Env:PKG_NAME-v$Env:WEBI_VERSION\bin" -ItemType Directory -Force
         Move-Item -Path "$VERNAME" -Destination "$Env:USERPROFILE\.local\opt\$Env:PKG_NAME-v$Env:WEBI_VERSION\bin"
 
     # Exit tmp
index d47b2095e6998dd62565135ea4860ea4a52a25df..1867075cea660e73e051309c46e202186f612d1b 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
+            New-Item -Path "$pkg_cmd_name-v$Env:WEBI_VERSION" -ItemType Directory -Force
         }
         ($none = pushd "$pkg_cmd_name-v$Env:WEBI_VERSION")  | out-null
             & tar xf "$pkg_download"
index 0ae4a62388195411f0139040b7589c79948ee10e..44a0db8e743cebe36d6a87be6137625980ac6b63 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 }
+IF (!(Test-Path -Path go\bin)) { New-Item -Path go\bin -ItemType Directory -Force }
 
 # Special to go: re-run all go tooling builds
 echo "Building go language tools..."
index 3722062217e37e022ebcb5753fc63477f8e11b06..bac24ff95d08d77df5b719e27fd9dfe3f723ad6b 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
+        New-Item "$pkg_src_bin" -ItemType Directory -Force
         Move-Item -Path ".\lsd-*\lsd.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 882de4514eacd1331f20091a4529c43639f34dd9..35ecc2c169e2ffdcc3928a96960a417bfa163c64 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 -ErrorAction Ignore
+New-Item -Path "$my_fontdir" -ItemType Directory -Force
 IF (!(Test-Path -Path "$my_fontdir\$my_nerdfont_otf"))
 {
 
index 2c161a022dc58a1194563eb511b0e5b2e264ab7e..61ca3d5004d5019c041d5356e8665007efe936c7 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
+        New-Item "$pkg_src_bin" -ItemType Directory -Force
         Move-Item -Path ".\ripgrep-*\rg.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp
index 0951caa8de2ed7d073c1b150e4edbf77f24e33f2..e323496072163c09f2d9f547867fb3c638048fb6 100644 (file)
@@ -5,7 +5,7 @@
 
 if (!(Test-Path -Path "$Env:USERPROFILE/.ssh"))
 {
-    New-Item -Path "$Env:USERPROFILE/.ssh" -ItemType Directory
+    New-Item -Path "$Env:USERPROFILE/.ssh" -ItemType Directory -Force
     #& icacls "$Env:USERPROFILE/.ssh" /inheritance:r
     #& icacls "$Env:USERPROFILE/.ssh" /grant:r "$Env:USERNAME":"(F)"
 }
index c77e39acdc9b1a7fe043f7cb7be26bb0e649c77a..3a5ee52aecc5e1294675af160e3ead9a5c1cb087 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
+    New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force
 }
 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 b82a6712bf78b9305ca033884334b6037ad7cf6f..bcf03f546470f9c541f96b293e0ff24776636de8 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
+    New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force
 }
 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 41cee14fce8bd9edc6cdd7eb2f051235320b196e..7e7127ce61ac998e50c5585da886e0512917e46e 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
+    New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force
 }
 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"