mirror of https://github.com/aminya/setup-cpp
fix: add the brew the path on Linux
This commit is contained in:
parent
3ba3a1b365
commit
f9582b64f0
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -5,6 +5,7 @@ import { tmpdir } from "os"
|
|||
import path, { join } from "path"
|
||||
import { mkdirP } from "@actions/io"
|
||||
import { readFileSync } from "fs"
|
||||
import { addPath } from "../utils/env/addEnv"
|
||||
|
||||
let binDir: string | undefined
|
||||
|
||||
|
@ -44,7 +45,13 @@ export async function setupBrew(_version: string, _setupDir: string, _arch: stri
|
|||
NONINTERACTIVE: "1",
|
||||
},
|
||||
})
|
||||
|
||||
if (process.platform === "linux") {
|
||||
binDir = "/home/linuxbrew/.linuxbrew/bin/"
|
||||
await addPath(binDir)
|
||||
} else {
|
||||
binDir = "/usr/local/bin/"
|
||||
}
|
||||
|
||||
return { binDir }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue