fix(pin-inputs): join strings with empty string
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
72cf10cc67
commit
0242576069
2 changed files with 1 additions and 1 deletions
BIN
apps/config/package-lock.json
generated
BIN
apps/config/package-lock.json
generated
Binary file not shown.
|
@ -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.*`),
|
||||||
|
|
Loading…
Reference in a new issue