Skip to content

Commit

Permalink
Do not ignore dependency install failure
Browse files Browse the repository at this point in the history
  • Loading branch information
tobil4sk committed Aug 7, 2022
1 parent 8490b49 commit f28a4c8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Binary file modified run.n
Binary file not shown.
7 changes: 1 addition & 6 deletions src/haxelib/api/Installer.hx
Original file line number Diff line number Diff line change
Expand Up @@ -537,12 +537,7 @@ class Installer {
default:
}

try
installFromInstallData(lib.name, lib.versionData)
catch (e) {
userInterface.log(e.toString());
continue;
}
installFromInstallData(lib.name, lib.versionData);

final library = switch lib.versionData {
case VcsInstall(version, vcsData): getVcsLibraryName(lib.name, version, vcsData.subDir);
Expand Down

0 comments on commit f28a4c8

Please sign in to comment.