chore: bump beta version to 2026.1.27-beta.1

This commit is contained in:
Peter Steinberger
2026-01-28 01:28:16 +01:00
parent e2c437e81e
commit 8d07955f2c
11 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ function moveLegacyConfigFile(legacyPath: string, canonicalPath: string) {
fs.mkdirSync(path.dirname(canonicalPath), { recursive: true, mode: 0o700 });
try {
fs.renameSync(legacyPath, canonicalPath);
} catch (err) {
} catch {
fs.copyFileSync(legacyPath, canonicalPath);
fs.chmodSync(canonicalPath, 0o600);
try {
@@ -10,7 +10,7 @@ describe("installUnhandledRejectionHandler - fatal detection", () => {
let originalExit: typeof process.exit;
beforeAll(() => {
originalExit = process.exit;
originalExit = process.exit.bind(process);
installUnhandledRejectionHandler();
});