🚨 fix: resolve linting type error
This commit is contained in:
@ -50,7 +50,7 @@ try {
|
||||
|
||||
// Extract the key and the remainder after "="
|
||||
const key = line.substring(0, delimiterIndex).trim();
|
||||
let remainder = line.substring(delimiterIndex + 1);
|
||||
const remainder = line.substring(delimiterIndex + 1);
|
||||
|
||||
// Attempt to separate value and inline comment (if any)
|
||||
let value = remainder;
|
||||
|
||||
@ -14,7 +14,7 @@ for (const remote of remotes) {
|
||||
try {
|
||||
execSync(`git push ${remote} main`, { stdio: "inherit" });
|
||||
} catch (err) {
|
||||
console.error(`❌ Failed to push to ${remote}`);
|
||||
console.error(`❌ Failed to push to ${remote}`, err);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user