Skip to content

Commit

Permalink
add message for SubmoduleError
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjamuffin99 committed Aug 31, 2024
1 parent 984fa6b commit 0fdf946
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/haxelib/api/Installer.hx
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,8 @@ class Installer {
throw 'Could not checkout branch, tag or path "$branch": ' + stderr;
case CantCheckoutVersion(_, version, stderr):
throw 'Could not checkout tag "$version": ' + stderr;
case SubmoduleError(_, repo, stderr):
throw 'Could not clone submodule(s) from $repo: ' + stderr;
case CommandFailed(_, code, stdout, stderr):
throw new VcsCommandFailed(id, code, stdout, stderr);
};
Expand Down

0 comments on commit 0fdf946

Please sign in to comment.