Update file executable_install-program
This commit is contained in:
parent
e9fb4b4fbf
commit
b3d6dbf923
1 changed files with 1 additions and 4 deletions
|
@ -1596,11 +1596,8 @@ async function pruneInstallOrders(installOrders) {
|
|||
} else if (pkgManager === 'brew') {
|
||||
let newVal = newOrders[pkgManager]
|
||||
for (const pkg of newOrders[pkgManager]) {
|
||||
const mktemp = await $`mktemp`
|
||||
const pkgTmp = mktemp.stdout
|
||||
runCommand(`Populating temporary file with list of Homebrew packages`, `brew list > ${pkgTmp}`)
|
||||
try {
|
||||
await $"cat ${pkgTmp} | grep '^" + pkg + "$'"
|
||||
await $`brew list | grep '^${pkg}$'`
|
||||
newVal = newVal.filter((x) => x === pkg)
|
||||
} catch (e) {
|
||||
// Do nothing
|
||||
|
|
Loading…
Reference in a new issue