Skip to content

Commit

Permalink
support jvm target
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Mar 18, 2024
1 parent ad7c56c commit 80a0b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hx/sshclient/internal/Macros.hx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class Macros {
throw 'ERROR: Haxe 4.2 or higher is required!';
#end
final def = Context.getDefines();
final supportedTargets = ["cpp", "cs", "hl", "java", "neko", "python"];
final supportedTargets = ["cpp", "cs", "hl", "java", "jvm", "neko", "python"];
final targetName = def.get("target.name");
if (!supportedTargets.contains(targetName)) {
throw 'ERROR: Unsupported Haxe target [${targetName}]! Supported are ${supportedTargets}';
Expand Down

0 comments on commit 80a0b27

Please sign in to comment.