fix(pin-inputs): join strings with empty string

This commit is contained in:
matt1432 2025-02-01 13:50:37 -05:00
parent 72cf10cc67
commit 0242576069
2 changed files with 6 additions and 6 deletions
apps/pin-inputs/src

View file

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