X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=_example%2Finstall.ps1;h=9f08cd257bc0f06dd424415e9604d17944e1e7f5;hb=d061d872c5ecf41ac6ba37b1028a49af80509d02;hp=e99cf7f9fc4a69f917ca2313089fac0aeb964c32;hpb=afe8aab57a5bc8d67886e923d2aa86691506c1f4;p=webi-installers%2F.git diff --git a/_example/install.ps1 b/_example/install.ps1 index e99cf7f..9f08cd2 100644 --- a/_example/install.ps1 +++ b/_example/install.ps1 @@ -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