cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / ssh-utils / ssh-pubkey.ps1
index 46838e38c12dccabe7dc326c87265392abf186e1..e86a858f07a6e5fdc446465bcf9062f4e0866da0 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 | out-null
     #& icacls "$Env:USERPROFILE/.ssh" /inheritance:r
     #& icacls "$Env:USERPROFILE/.ssh" /grant:r "$Env:USERNAME":"(F)"
 }
@@ -26,7 +26,7 @@ if (!(Test-Path -Path "$Env:USERPROFILE/.ssh/config"))
 
 if (!(Test-Path -Path "$Env:USERPROFILE/.ssh/id_rsa"))
 {
-    & ssh-keygen -b 2048 -t rsa -f "$Env:USERPROFILE/.ssh/id_rsa" -q -N ""
+    & ssh-keygen -b 2048 -t rsa -f "$Env:USERPROFILE/.ssh/id_rsa" -q -N """"
     echo ""
 }