Skip to content

Commit

Permalink
Add support for RISC-V arch. (#52)
Browse files Browse the repository at this point in the history
On behalf of #51
  • Loading branch information
Ivan committed Feb 6, 2021
1 parent a23ab32 commit 58d2208
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/kr/motd/maven/os/Detector.java
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ private static String normalizeArch(String value) {
if ("s390x".equals(value)) {
return "s390_64";
}

if ("riscv".equals(value)) {
return "riscv";
}
return UNKNOWN;
}

Expand Down

0 comments on commit 58d2208

Please sign in to comment.