fix(setup): Fix setup.ps1 to check Get-Acl exists

* `Get-Acl` not found in Linux Powershell version, so only call it
  if it exists.
This commit is contained in:
Peter Johanson 2021-09-11 05:16:40 +00:00 committed by Pete Johanson
parent c7e513634d
commit 2f0ad4cc8c

View file

@ -58,11 +58,23 @@ catch [System.Management.Automation.CommandNotFoundException] {
Test-Git-Config -Option "user.name" -ErrMsg "Git username not set!`nRun: git config --global user.name 'My Name'" Test-Git-Config -Option "user.name" -ErrMsg "Git username not set!`nRun: git config --global user.name 'My Name'"
Test-Git-Config -Option "user.email" -ErrMsg "Git email not set!`nRun: git config --global user.email 'example@myemail.com'" Test-Git-Config -Option "user.email" -ErrMsg "Git email not set!`nRun: git config --global user.email 'example@myemail.com'"
function Test-CommandExists {
param ($command)
$oldPreference = $ErrorActionPreference
$ErrorActionPreference = stop
try {
if(Get-Command $command){ return $true }
} Catch { return $false }
Finally { $ErrorActionPreference=$oldPreference }
}
if (Test-CommandExists Get-Acl) {
$permission = (Get-Acl $pwd).Access | $permission = (Get-Acl $pwd).Access |
?{$_.IdentityReference -match $env:UserName ` ?{$_.IdentityReference -match $env:UserName `
-and $_.FileSystemRights -match "FullControl" ` -and $_.FileSystemRights -match "FullControl" `
-or $_.FileSystemRights -match "Write" } | -or $_.FileSystemRights -match "Write" } |
Select IdentityReference,FileSystemRights Select IdentityReference,FileSystemRights
If (-Not $permission){ If (-Not $permission){
@ -70,6 +82,7 @@ If (-Not $permission){
Write-Host "Please try running this script again from a directory that you do have write permissions for." Write-Host "Please try running this script again from a directory that you do have write permissions for."
exit 1 exit 1
} }
}
$repo_path = "https://github.com/zmkfirmware/zmk-config-split-template.git" $repo_path = "https://github.com/zmkfirmware/zmk-config-split-template.git"