This commit is contained in:
Emerson Coskey
2025-10-05 17:29:17 -07:00
parent e580e29fb5
commit b2403debf7
+1 -2
View File
@@ -434,14 +434,13 @@ Singleton {
`mkdir -p ${colorsPathParent}`,
// copy theme file to terminal config directory
`cp -f ${terminalColorsTemplate} ${colorsPath}`,
// apply terminal
// apply theme config
`${colorsApplyScript} ${terminal}`,
]
})
.reduce((arr1, arr2) => arr1.concat(arr2), []) // can't use .flatMap in Qt's environment
.join("; ")
// Finally execute all copies at once.
if (copyCmd !== "") {
//console.log(copyCmd)
copyProcess.command = ["bash", "-lc", copyCmd]