This commit is contained in:
Norayr Chilingarian 2020-06-09 20:22:03 +04:00
parent dff47dc004
commit d36843e1f4
3 changed files with 5 additions and 3 deletions

2
lists

@ -1 +1 @@
Subproject commit 792d1e8bf4a1cfb50a3b6fa3dab10c616f6e5552
Subproject commit 08d93de0618077d9ebae98397f191613a4f46120

View file

@ -1,5 +1,5 @@
MODULE vpkInstaller;
IMPORT StringList, vpkResolver, vpkdepTree, vpkDot;
IMPORT StringList, vpkResolver, vpkdepTree, vpkDot, vpkSettings;
PROCEDURE install*(VAR unit: ARRAY OF CHAR);
VAR
@ -8,7 +8,7 @@ VAR
BEGIN
tree := vpkResolver.resolve(unit);
lst := vpkDot.tree2dot(tree);
lst.Dump(lst, vpkSettings.graphName);
END install;

View file

@ -5,6 +5,8 @@ CONST
vpkConfFile* = "vipackConf.json";
vpkTreeDir* = "vipackTree";
graphName* = "deps.dot";
confTypKey* = "type";
confTypGitVal* = "git";
confTypHttpVal* = "http";