From 6536accd7ddac32dae3c9ba49bf513b01a3824a7 Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Mon, 5 Dec 2022 06:26:27 +0000 Subject: [PATCH] Update .local/share/chezmoi/home/dot_local/bin/executable_install-program --- .../chezmoi/home/dot_local/bin/executable_install-program | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.local/share/chezmoi/home/dot_local/bin/executable_install-program b/.local/share/chezmoi/home/dot_local/bin/executable_install-program index 88c12e34..be129482 100644 --- a/.local/share/chezmoi/home/dot_local/bin/executable_install-program +++ b/.local/share/chezmoi/home/dot_local/bin/executable_install-program @@ -264,7 +264,7 @@ async function generateInstallOrders() { normalCheck = softwarePackages[packageKey]["_" + currentSelector]; if (doubleScoped) { const bin = which.sync(doubleScoped, { nothrow: true }); - if (!bin) { + if (bin) { let pref; if ( softwarePackages[packageKey][ @@ -301,7 +301,7 @@ async function generateInstallOrders() { } } else if (scopedPkgManager) { const bin = which.sync(scopedPkgManager, { nothrow: true }); - if (!bin) { + if (bin) { const pref = preference; log( "info", @@ -313,7 +313,7 @@ async function generateInstallOrders() { } } else if (scopedSystem) { const bin = which.sync(scopedSystem, { nothrow: true }); - if (!bin) { + if (bin) { let pref; if ( softwarePackages[packageKey]["_" + currentSelector + ":" + osID] @@ -334,7 +334,7 @@ async function generateInstallOrders() { } } else if (normalCheck) { const bin = which.sync(normalCheck, { nothrow: true }); - if (!bin) { + if (bin) { log( "info", "Skipping Package",