Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9699cdf

Browse files
committedNov 6, 2024·
Merge branch 'release/2.88.9-preview.2' into release/2.88.9
2 parents 3fc96c6 + ab8d658 commit 9699cdf

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)
Please sign in to comment.