Skip to content

Commit

Permalink
Resolves #132.
Browse files Browse the repository at this point in the history
  • Loading branch information
back2dos committed Apr 25, 2020
1 parent 95f4ca6 commit 4718bc0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/lix/client/Libraries.hx
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,15 @@ using haxe.Json;
if (info.dependencies != null)
for (k => v in info.dependencies)
lines.push('-lib $k');
lines.push('-D $lib='+ switch info.version {
case null: 'dev';
case v: v;
});

lines.push('-cp ' + switch info.classPath {
case null: path;
case v: '$usedPath/$v';
});
lines.push('-D $lib='+ switch info.version {
case null: 'dev';
case v: v;
});

var line = lines.length;

Expand Down

0 comments on commit 4718bc0

Please sign in to comment.