cleanup: use -Force making directories
[webi-installers/.git] / _example / install.ps1
index e99cf7f9fc4a69f917ca2313089fac0aeb964c32..9f08cd257bc0f06dd424415e9604d17944e1e7f5 100644 (file)
@@ -34,7 +34,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
     # Enter tmp
     pushd .local\tmp
 
-        # Remove any leftover tmp cruft 
+        # Remove any leftover tmp cruft
         Remove-Item -Path ".\foobar-v*" -Recurse -ErrorAction Ignore
         Remove-Item -Path ".\foo.exe" -Recurse -ErrorAction Ignore
 
@@ -46,10 +46,10 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         # Windows BSD-tar handles zip. Imagine that.
         echo "Unpacking $pkg_download"
         & tar xf "$pkg_download"
-      
+
         # 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 ".\foobar-*\foo.exe" -Destination "$pkg_src_bin"
 
     # Exit tmp