mirror of https://github.com/aminya/setup-cpp
feat: add setup choco
This commit is contained in:
parent
cd0ee64e3e
commit
e522160611
|
@ -0,0 +1,21 @@
|
|||
import { exec } from "@actions/exec"
|
||||
import which from "which"
|
||||
import { setupChocolatey } from "../../chocolatey/chocolatey"
|
||||
|
||||
/** A function that installs a package using choco */
|
||||
export async function setupChoco(name: string, version?: string) {
|
||||
if (which.sync("choco", { nothrow: true }) === null) {
|
||||
await setupChocolatey()
|
||||
}
|
||||
|
||||
let exit
|
||||
if (version === undefined) {
|
||||
exit = await exec("choco", ["install", name])
|
||||
} else {
|
||||
exit = await exec("choco", ["install", name, `--version=${version}`])
|
||||
}
|
||||
|
||||
if (exit !== 0) {
|
||||
throw new Error(`Failed to install ${name} ${version}`)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue