Update 2 files

- /home/dot_local/bin/executable_install-program
- /home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.mjs.tmpl
This commit is contained in:
Brian Zalewski 2023-01-09 13:38:35 +00:00
parent a16009c55e
commit 44dc2291c4
2 changed files with 2 additions and 1 deletions

View file

@ -85,7 +85,7 @@ async function applyDconfSettings(settings) {
if (dconf) { if (dconf) {
for (const setting of settings) { for (const setting of settings) {
try { try {
const dconfCmd = 'dconf write ' + setting.key + ' ' + setting.value const dconfCmd = 'dconf write ' + setting.key + ' "' + setting.value + '"'
execSync(dconfCmd) execSync(dconfCmd)
log('success', 'Dconf', 'Changed ' + setting.key + ' to ' + setting.value) log('success', 'Dconf', 'Changed ' + setting.key + ' to ' + setting.value)
} catch (e) { } catch (e) {

View file

@ -1135,6 +1135,7 @@ async function installPackageList(packageManager, packages) {
console.error(e) console.error(e)
} }
} }
log('warn', 'Install', 'Zap installs might fail - this is expected. Waiting on fixes to Zap upstream project')
} else if (packageManager === 'ansible') { } else if (packageManager === 'ansible') {
for (let pkg of packages) { for (let pkg of packages) {
try { try {