X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=awless%2Finstall.ps1;h=bee791b5b583a4251d00340bd1ee2c6f366e19fe;hb=3f64f8b9c513da3aa4d10e3344426dbb3f817d5e;hp=dbd7a095e6a408f7f4b07ce2531048f65edf5701;hpb=2073a1eeebdcd30ffaddaf40e7c4940361bd5a08;p=webi-installers%2F.git diff --git a/awless/install.ps1 b/awless/install.ps1 index dbd7a09..bee791b 100644 --- a/awless/install.ps1 +++ b/awless/install.ps1 @@ -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