[LOCAL] Fix template publishing (#47116)

This commit is contained in:
Riccardo Cipolleschi
2024-10-18 11:13:11 +01:00
committed by GitHub
parent 1be8c51173
commit 007a8e12b8
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
const {execSync} = require('child_process');
function run(...cmd) {
function run(cmd) {
return execSync(cmd, 'utf8').toString().trim();
}
module.exports.run = run;