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) {
for (const setting of settings) {
try {
const dconfCmd = 'dconf write ' + setting.key + ' ' + setting.value
const dconfCmd = 'dconf write ' + setting.key + ' "' + setting.value + '"'
execSync(dconfCmd)
log('success', 'Dconf', 'Changed ' + setting.key + ' to ' + setting.value)
} catch (e) {

View file

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