languages/json: remove unessesary multiline

Remove unnecessary multiline string in `writeShellApplication`.

Co-authored-by: raf <raf@notashelf.dev>
This commit is contained in:
Poseidon 2025-08-13 15:12:18 -05:00 committed by GitHub
commit fa10b2341d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,9 +31,7 @@
package = pkgs.writeShellApplication {
name = "jsonfmt";
runtimeInputs = [pkgs.jsonfmt];
text = ''
jsonfmt -w -
'';
text = "jsonfmt -w -";
};
};
};