fix(pin-inputs): join strings with empty string
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-02-01 13:50:37 -05:00
parent 72cf10cc67
commit 0242576069
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -48,7 +48,7 @@ INPUTS.forEach((input) => {
const inputsFile = `${FLAKE}/inputs/default.nix`; const inputsFile = `${FLAKE}/inputs/default.nix`;
const rev = getCurrentRev(input); const rev = getCurrentRev(input);
const msg = ['FIX', 'ME'].join(); const msg = ['FIX', 'ME'].join('');
replaceInFile( replaceInFile(
new RegExp(`(\\n[ ]*)${input} =.*\\n.*\\n.*`), new RegExp(`(\\n[ ]*)${input} =.*\\n.*\\n.*`),