mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
fixed bug in 'no such package' implementation.
This commit is contained in:
parent
eef3f38909
commit
85bc6ea77a
1 changed files with 5 additions and 3 deletions
|
|
@ -68,9 +68,11 @@ BEGIN
|
||||||
UNTIL i = depStrs.Count - 1;
|
UNTIL i = depStrs.Count - 1;
|
||||||
d.AssignDeps(d, deps);
|
d.AssignDeps(d, deps);
|
||||||
ELSE
|
ELSE
|
||||||
Out.Ln;
|
IF met.Empty(met) THEN
|
||||||
Out.String("package "); Out.String(d.name^); Out.String(" not found in the tree"); Out.Ln;
|
Out.Ln;
|
||||||
HALT(61)
|
Out.String("package "); Out.String(d.name^); Out.String(" not found in the tree"); Out.Ln;
|
||||||
|
HALT(61)
|
||||||
|
END;
|
||||||
END;
|
END;
|
||||||
depTree.Add(depTree, d);
|
depTree.Add(depTree, d);
|
||||||
END mkDepTree;
|
END mkDepTree;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue