Compare commits

...
Author SHA1 Message Date
Blake Friedman 84b2e4772b [CI] fix publish template
execSync called with incorrect args.

Changelog: [Internal]
2024-10-16 00:21:17 +01:00
+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;