From 39bae749b5bc9326b0270567674c448b4d45610e Mon Sep 17 00:00:00 2001 From: simwai <16225108+simwai@users.noreply.github.com> Date: Thu, 30 May 2024 19:52:41 +0200 Subject: [PATCH] Changed freqUI installation behaviour to auto installing --- setup.ps1 | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) diff --git a/setup.ps1 b/setup.ps1 index aaf3a825b..5272614e8 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -254,32 +254,14 @@ function Main { Exit-Script -exitCode 1 } - $UiOptions = @("Yes", "No") - $InstallUi = Get-UserSelection -prompt "Do you want to install the freqUI?" -options $UiOptions -defaultChoice 'B' -allowMultipleSelections $false - - if ($InstallUi -eq 0) { - # User selected "Yes" - # Install freqUI using the virtual environment's install-ui command - Write-Log "Installing freqUI..." - python freqtrade install-ui 2>&1 | Out-File $LogFilePath -Append - if ($LASTEXITCODE -ne 0) { - Write-Log "Failed to install freqUI." -Level 'ERROR' - Exit-Script -exitCode 1 - } - } - elseif ($InstallUi -eq 1) { - # User selected "No" - # Skip installing freqUI - Write-Log "Skipping freqUI installation." - } - else { - # Invalid Selection - # Handle the error case - Write-Log "Invalid Selection for freqUI installation." -Level 'ERROR' + Write-Log "Installing freqUI..." + python freqtrade install-ui 2>&1 | Out-File $LogFilePath -Append + if ($LASTEXITCODE -ne 0) { + Write-Log "Failed to install freqUI." -Level 'ERROR' Exit-Script -exitCode 1 } - Write-Log "Update complete!" + Write-Log "Installation/Update complete!" Exit-Script -exitCode 0 }