forked from lix-project/lix
nix-shell: Replace resolving failure error by an assertion
This shouldn’t happen in practice, so better make it explicit
This commit is contained in:
parent
56605b4688
commit
3b58dbb356
|
@ -389,8 +389,7 @@ static void main_nix_build(int argc, char * * argv)
|
||||||
|
|
||||||
if (settings.isExperimentalFeatureEnabled("ca-derivations")) {
|
if (settings.isExperimentalFeatureEnabled("ca-derivations")) {
|
||||||
auto resolvedDrv = drv.tryResolve(*store);
|
auto resolvedDrv = drv.tryResolve(*store);
|
||||||
if (!resolvedDrv)
|
assert(resolvedDrv && "Successfully resolved the derivation");
|
||||||
throw Error("unable to resolve the derivation '%s'. nix-shell can’t continue", drvInfo.queryDrvPath());
|
|
||||||
drv = *resolvedDrv;
|
drv = *resolvedDrv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue