refactor(nix/tag): use throw over lib.assertMsg
Slightly prettier error message etc. Change-Id: I9af4ec6ce337c65b5ca0820dc15a4e084832c529 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3542 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
parent
bab46ed75e
commit
bef44b2042
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ let
|
||||||
# like `verifyTag`, but throws the error message if it is not a tag.
|
# like `verifyTag`, but throws the error message if it is not a tag.
|
||||||
assertIsTag = tag:
|
assertIsTag = tag:
|
||||||
let res = verifyTag tag; in
|
let res = verifyTag tag; in
|
||||||
assert lib.assertMsg res.isTag res.errmsg;
|
assert res.isTag || throw res.errmsg;
|
||||||
{ inherit (res) name val; };
|
{ inherit (res) name val; };
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue