mealie: prepend version with a 'v'

This fixes the update checker in mealie's admin settings.

Previously it considered the mealie version was out of date when the
version of the deployment, e.g. "1.6.0", did not match the latest
version, "v1.6.0".
This commit is contained in:
Andrew Morgan 2024-05-08 00:52:02 +01:00
parent 7d9adbac81
commit ab20404e75
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ in pythonpkgs.buildPythonPackage rec {
postPatch = ''
substituteInPlace mealie/__init__.py \
--replace-fail '__version__ = ' '__version__ = "${version}" #'
--replace-fail '__version__ = ' '__version__ = "v${version}" #'
'';
postInstall = let