Skip to content

Commit d745ebf

Browse files
authored
ci(update): formatter updated (#179)
1 parent b85202c commit d745ebf

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ in
149149
options = {
150150
meta = {
151151
maintainers = lib.mkOption {
152-
description = ''Maintainers of this module.'';
152+
description = "Maintainers of this module.";
153153
type = maintainersWithFiles;
154154
default = [ ];
155155
};
@@ -671,11 +671,11 @@ in
671671
if builtins.isList phases then
672672
(lib.pipe phases [
673673
(builtins.concatMap (n: [
674-
''''${pre${capitalize n}s[*]:-}''
674+
"\${pre${capitalize n}s[*]:-}"
675675
"${n}"
676676
]))
677677
(v: if builtins.length v > 0 then builtins.tail v else [ ])
678-
(v: [ ''''${prePhases[*]:-}'' ] ++ v ++ [ ''''${postPhases[*]:-}'' ])
678+
(v: [ "\${prePhases[*]:-}" ] ++ v ++ [ "\${postPhases[*]:-}" ])
679679
(builtins.concatStringsSep " ")
680680
wlib.escapeShellArgWithEnv
681681
(v: "\n" + ''if [ -z "''${phases[*]:-}" ]; then phases=${v}; fi'' + "\n")

lib/lib.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ in
133133
pathStr = toString path;
134134
name = baseNameOf pathStr;
135135
in
136-
pkgs.runCommandLocal name { } ''ln -s ${lib.escapeShellArg pathStr} $out'';
136+
pkgs.runCommandLocal name { } "ln -s ${lib.escapeShellArg pathStr} $out";
137137

138138
/**
139139
getPackageOutputsSet ::

0 commit comments

Comments
 (0)