Skip to content

Commit d1d44ff

Browse files
committed
add prerelease support for windows
1 parent 3adb816 commit d1d44ff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup/install-quarto-windows.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ $version=$args[0]
2222
scoop bucket add r-bucket https://github.com/cderv/r-bucket.git
2323
if ([string]::IsNullOrEmpty($version)) {
2424
scoop install quarto
25-
}else{
25+
} elseif ($version -eq 'pre-release') {
26+
Invoke-Expression -Command "scoop install quarto-prerelease"
27+
} else {
2628
Invoke-Expression -Command "scoop install quarto@$version"
2729
}

0 commit comments

Comments
 (0)