Skip to content

launch_mac doesn't work #13

@elken

Description

@elken

Due to an expansion of the JAVA_ARGS array, it incorrectly thinks it's unbound (seems empty and unbound are the same thing for arrays in bash or something...)

Trying to run it gives

./launch_mac.sh: line 182: JAVA_ARGS[@]: unbound variable

In the exec call, fixing it is as simple as

  • Change "${JAVA_ARGS[@]}" to ${JAVA_ARGS[@]+"${JAVA_ARGS[@]}"}
  • Change "${MAIN_ARGS[@]}" to ${MAIN_ARGS[@]+"${MAIN_ARGS[@]}"}

And then it starts at least 😄

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions