Update 2 files

- /home/dot_local/bin/executable_install-program
- /software.yml
This commit is contained in:
Brian Zalewski 2023-01-09 07:43:44 +00:00
parent c934620bca
commit a1a5699701
2 changed files with 3 additions and 3 deletions

View file

@ -1508,7 +1508,7 @@ async function installPlugins(pluginData) {
for (const plugin of pluginData.plugins) {
try {
const pluginCmd = pluginData.cmd.replace(/{PLUGIN}/g, plugin)
runCommand(`Installing ${pluginData.package} plugin - ${plugin}`, `{pluginCmd}`)
runCommand(`Installing ${pluginData.package} plugin - ${plugin}`, pluginCmd)
log('success', 'Plugin', `Successfully installed ${pluginData.package} plugin - ${plugin}`)
} catch (e) {
log('error', 'Plugin', `Failed to install ${pluginData.package} plugin - ${plugin}`)
@ -1524,7 +1524,7 @@ async function linkBin(installOrdersBinLink) {
const flatpak = which.sync('flatpak', { nothrow: true })
if (flatpak) {
flatpakInstallation = await $`flatpak --installations`
flatpakDir = flatpakInstallation.stdout.replace(/\\n/g, '')
flatpakDir = flatpakInstallation.stdout.replace('\n', '')
}
for (const binLink of installOrdersBinLink) {
const pkg = softwarePackages[binLink.package][binLink.preference]

View file

@ -5999,7 +5999,7 @@ softwarePackages:
_name: Snap
ansible:linux: professormanhattan.snapd
snitch:
_bin: null
_bin: opensnitchd
_desc: '[Little Snitch](https://www.obdev.at/products/littlesnitch/index.html) (macOS) and [OpenSnitch](https://github.com/evilsocket/opensnitch) (Linux) are application firewalls that make Internet connections visible. You can then configure which applications can access the internet (or LAN) as well as monitor the traffic patterns of applications.'
_docs: null
_github: null