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

Fix generation again

This commit is contained in:
RGBCube 2023-11-26 22:01:28 +03:00
parent 77ff2b7cf0
commit 0bfc50a061
No known key found for this signature in database
2 changed files with 252 additions and 252 deletions

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"