Skip to content

Commit

Permalink
add prerelease support for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv committed Jul 21, 2022
1 parent 3adb816 commit d1d44ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup/install-quarto-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ $version=$args[0]
scoop bucket add r-bucket https://github.com/cderv/r-bucket.git
if ([string]::IsNullOrEmpty($version)) {
scoop install quarto
}else{
} elseif ($version -eq 'pre-release') {
Invoke-Expression -Command "scoop install quarto-prerelease"
} else {
Invoke-Expression -Command "scoop install quarto@$version"
}

0 comments on commit d1d44ff

Please sign in to comment.