From 76776e9d5403d59b2cd5cba16d84f819a56bc5aa Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 26 Apr 2021 05:14:00 +0000 Subject: [PATCH] */install.ps1: more cleanup --- _webi/template.ps1 | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/_webi/template.ps1 b/_webi/template.ps1 index 42e0c6b..71d4f82 100644 --- a/_webi/template.ps1 +++ b/_webi/template.ps1 @@ -21,19 +21,10 @@ $Env:WEBI_HOST = 'https://webinstall.dev' # Switch to userprofile pushd $Env:USERPROFILE -# Make paths if needed - - +# Make paths New-Item -Path Downloads -ItemType Directory -Force | out-null - -if (!(Test-Path -Path .local\bin)) -{ - New-Item -Path .local\bin -ItemType Directory -Force -} -if (!(Test-Path -Path .local\opt)) -{ - New-Item -Path .local\opt -ItemType Directory -Force -} +New-Item -Path .local\bin -ItemType Directory -Force | out-null +New-Item -Path .local\opt -ItemType Directory -Force | out-null # {{ baseurl }} # {{ version }} -- 2.25.1