Skip to content

Commit

Permalink
fix(assemble): Avoid empty elif block in launchers
Browse files Browse the repository at this point in the history
Fixes #1683
  • Loading branch information
github-actions[bot] committed Jun 30, 2024
1 parent 3ac912c commit 789d336
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ if $darwin; then
export {{key}}="{{value}}"
{{/distributionJavaEnvironmentVariablesOsx}}
else
NOOP=""
# linux JVM options
{{#distributionJavaJvmOptionsLinux}}
JAVA_OPTS="$JAVA_OPTS {{.}}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ if $darwin; then
export {{key}}="{{value}}"
{{/distributionJavaEnvironmentVariablesOsx}}
else
NOOP=""
# linux JVM options
{{#distributionJavaJvmOptionsLinux}}
JAVA_OPTS="$JAVA_OPTS {{.}}"
Expand Down

0 comments on commit 789d336

Please sign in to comment.