Update .local/share/chezmoi/home/dot_local/bin/executable_install-program

This commit is contained in:
Brian Zalewski 2022-12-05 06:26:27 +00:00
parent 4b07de0d71
commit 6536accd7d

View file

@ -264,7 +264,7 @@ async function generateInstallOrders() {
normalCheck = softwarePackages[packageKey]["_" + currentSelector]; normalCheck = softwarePackages[packageKey]["_" + currentSelector];
if (doubleScoped) { if (doubleScoped) {
const bin = which.sync(doubleScoped, { nothrow: true }); const bin = which.sync(doubleScoped, { nothrow: true });
if (!bin) { if (bin) {
let pref; let pref;
if ( if (
softwarePackages[packageKey][ softwarePackages[packageKey][
@ -301,7 +301,7 @@ async function generateInstallOrders() {
} }
} else if (scopedPkgManager) { } else if (scopedPkgManager) {
const bin = which.sync(scopedPkgManager, { nothrow: true }); const bin = which.sync(scopedPkgManager, { nothrow: true });
if (!bin) { if (bin) {
const pref = preference; const pref = preference;
log( log(
"info", "info",
@ -313,7 +313,7 @@ async function generateInstallOrders() {
} }
} else if (scopedSystem) { } else if (scopedSystem) {
const bin = which.sync(scopedSystem, { nothrow: true }); const bin = which.sync(scopedSystem, { nothrow: true });
if (!bin) { if (bin) {
let pref; let pref;
if ( if (
softwarePackages[packageKey]["_" + currentSelector + ":" + osID] softwarePackages[packageKey]["_" + currentSelector + ":" + osID]
@ -334,7 +334,7 @@ async function generateInstallOrders() {
} }
} else if (normalCheck) { } else if (normalCheck) {
const bin = which.sync(normalCheck, { nothrow: true }); const bin = which.sync(normalCheck, { nothrow: true });
if (!bin) { if (bin) {
log( log(
"info", "info",
"Skipping Package", "Skipping Package",