1
Fork 0
mirror of https://github.com/RGBCube/ThemeNix synced 2025-07-27 08:27:45 +00:00

Fix generation yet again

This commit is contained in:
RGBCube 2023-11-26 22:05:16 +03:00
parent 0bfc50a061
commit 42959d67c4
No known key found for this signature in database

View file

@ -40,7 +40,7 @@ def generate-valid-themes [] {
ls themes
| each { $in.name | str replace ".nix" "" }
| each { |it| ' "' + ($it | path basename) + '" = import "./' + $it + '.nix";' }
| each { |it| ' "' + ($it | path basename) + '" = import ./' + $it + ".nix;" }
| prepend "{"
| append "}\n"
| str join "\n"