Skip to content

Commit

Permalink
[maven] Process sdkman packager at distribution level. Fixes #610
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Dec 19, 2021
1 parent f54eaa4 commit 3350684
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.adoc
Expand Up @@ -74,9 +74,9 @@ jbang jreleaser-snapshot@jreleaser <command> [<args>]

[source]
----
$ dnf install dnf-plugins-core
$ dnf copr enable aalmiray/jreleaser
$ dnf install jreleaser
dnf install dnf-plugins-core
dnf copr enable aalmiray/jreleaser
dnf install jreleaser
----

*Macports*
Expand Down Expand Up @@ -134,7 +134,7 @@ working directory at the `/workspace` volume, for example assuming the current d

[source]
----
$ docker run -it --rm -v `(pwd)`:/workspace \
docker run -it --rm -v `(pwd)`:/workspace \
jreleaser/<image>:<tag> <command> [<args>]
----

Expand Down
Expand Up @@ -1008,6 +1008,7 @@ private static org.jreleaser.model.Distribution convertDistribution(Distribution
if (distribution.getJbang().isSet()) d.setJbang(convertJbang(distribution.getJbang()));
if (distribution.getMacports().isSet()) d.setMacports(convertMacports(distribution.getMacports()));
if (distribution.getScoop().isSet()) d.setScoop(convertScoop(distribution.getScoop()));
if (distribution.getSdkman().isSet()) d.setSdkman(convertSdkman(distribution.getSdkman()));
if (distribution.getSnap().isSet()) d.setSnap(convertSnap(distribution.getSnap()));
if (distribution.getSpec().isSet()) d.setSpec(convertSpec(distribution.getSpec()));

Expand Down

0 comments on commit 3350684

Please sign in to comment.