easybuild-framework icon indicating copy to clipboard operation
easybuild-framework copied to clipboard

Can't use multiple `--try-amend` statements in Easystack entry

Open cgross95 opened this issue 1 year ago • 5 comments
trafficstars

We install MATLAB using something like

eb MATLAB-2023b.eb \
    --try-amend="license_server=hostname" \
    --try-amend="license_server_port=12345" \
    --try-amend="key=abc-123"

But the equivalent Easystack will only use the last value, e.g.,

easyconfigs:
- MATLAB-2023b.eb:
    options:
      try-amend: "license_server=hostname"
      try-amend: "license_server_port=12345"
      try-amend: "key=abc-123"

gives a tweaked EasyConfig that only has key=abc123 at the bottom. license_server and license_server_port are ignored.

cgross95 avatar Sep 17 '24 14:09 cgross95