gitea: Fix substitution in wrong file after rebasing a patch

This command is needed to substitute @data@ which is added by
static-root-path.patch. When this patch was rebased for 1.19.0,
the file name changed, but the command was not updated.
This commit is contained in:
Dmitry Shachnev 2023-06-08 20:05:24 +03:00
parent 6ae5941ed8
commit 2a294648ca

View File

@ -34,7 +34,7 @@ buildGoModule rec {
];
postPatch = ''
substituteInPlace modules/setting/setting.go --subst-var data
substituteInPlace modules/setting/server.go --subst-var data
'';
subPackages = [ "." ];