Skip to content

Commit ee0f7a0

Browse files
forgejo.updateScript: fix the regex escape (NixOS#361871)
2 parents c378f49 + 6db3c2f commit ee0f7a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/by-name/fo/forgejo/generic.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ buildGoModule rec {
153153
updateScript = nix-update-script {
154154
extraArgs = nixUpdateExtraArgs ++ [
155155
"--version-regex"
156-
"v(${lib.versions.major version}\.[0-9.]+)"
156+
"v(${lib.versions.major version}\\.[0-9.]+)"
157157
];
158158
};
159159
};

0 commit comments

Comments
 (0)