Skip to content

Commit fb58cbb

Browse files
authored
Use a snapshot now that 4.0 has been removed (#3054)
1 parent 4e39e7d commit fb58cbb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/install-tizen.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
Param(
66
[string] $Version = "4.1",
7+
[string] $Snapshot = "5.6",
78
[string] $InstallDestination = $null,
89
[boolean] $UpgradeLLVM = $true
910
)
@@ -58,9 +59,9 @@ if ($IsMacOS -or $IsLinux) {
5859
Write-Host "Installing Additional Packages: '$packages'..."
5960
$packMan = Join-Path (Join-Path "$ts" "package-manager") "package-manager-cli.${ext}"
6061
if ($IsMacOS -or $IsLinux) {
61-
& "bash" "$packMan" install --no-java-check --accept-license "$packages"
62+
& "bash" "$packMan" install --no-java-check --accept-license "$packages" -s "Tizen_Studio_$Snapshot"
6263
} else {
63-
& "$packMan" install --no-java-check --accept-license "$packages"
64+
& "$packMan" install --no-java-check --accept-license "$packages" -s "Tizen_Studio_$Snapshot"
6465
}
6566

6667
function Swap-Tool {

0 commit comments

Comments
 (0)