Skip to content

Commit

Permalink
Use a snapshot now that 4.0 has been removed (#3054)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow authored Nov 6, 2024
1 parent 4e39e7d commit fb58cbb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/install-tizen.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

Param(
[string] $Version = "4.1",
[string] $Snapshot = "5.6",
[string] $InstallDestination = $null,
[boolean] $UpgradeLLVM = $true
)
Expand Down Expand Up @@ -58,9 +59,9 @@ if ($IsMacOS -or $IsLinux) {
Write-Host "Installing Additional Packages: '$packages'..."
$packMan = Join-Path (Join-Path "$ts" "package-manager") "package-manager-cli.${ext}"
if ($IsMacOS -or $IsLinux) {
& "bash" "$packMan" install --no-java-check --accept-license "$packages"
& "bash" "$packMan" install --no-java-check --accept-license "$packages" -s "Tizen_Studio_$Snapshot"
} else {
& "$packMan" install --no-java-check --accept-license "$packages"
& "$packMan" install --no-java-check --accept-license "$packages" -s "Tizen_Studio_$Snapshot"
}

function Swap-Tool {
Expand Down

0 comments on commit fb58cbb

Please sign in to comment.