mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Add minor revises to the Powershell script
This commit is contained in:
parent
eb195f89bb
commit
a832411f56
1 changed files with 3 additions and 2 deletions
|
@ -440,14 +440,15 @@ function Set-MessengerManifestRegistry() {
|
|||
|
||||
function Set-MessengerInstall() {
|
||||
# Check for Python 3
|
||||
|
||||
Write-Host "[+] Looking for Python 3 ..."
|
||||
$pythonVersionStatus = Get-PythonVersionStatus
|
||||
if (! $pythonVersionStatus) {
|
||||
Write-Host " - Python 3 not found, quitting ..."
|
||||
exit -1
|
||||
} else {
|
||||
$pythonPath = Get-Command "py" | Select-Object "Source"
|
||||
$pythonPath = Get-Command "py" `
|
||||
| Select-Object -ExpandProperty "Source"
|
||||
|
||||
Write-Host " - Python 3 found at: $pythonPath"
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue