Currently, if the resolved release name does not match any supported pattern (rawhide', f38 or so),
the following error is printed:
(foo) $ fedpkg prep
Could not execute prep: Could not find the release/dist from branch name foo
Please specify with --release
This is fine when the current Git branch name was used when resolving the release.
However, the exact same error is printed even if the --release option was used, like this:
The error message is split into two cases depending on if --release was used
(detected by checking if self.dist is truthy):
(foo) $ fedpkg prep
Could not execute prep: Could not find release from branch name 'foo'. Please specify with --release.
$ fedpkg --release foo prep
Could not execute prep: Invalid release 'foo'.
Currently, if the resolved release name does not match any supported pattern (
rawhide',f38or so),the following error is printed:
This is fine when the current Git branch name was used when resolving the release.
However, the exact same error is printed even if the
--releaseoption was used, like this:The error message is split into two cases depending on if
--releasewas used(detected by checking if
self.distis truthy):Signed-off-by: Otto Liljalaakso otto.liljalaakso@iki.fi