bartongroup / slivka

http://bartongroup.github.io/slivka/
Apache License 2.0
7 stars 3 forks source link

environment variables in the command are not being interpolated #115

Closed warownia1 closed 2 years ago

warownia1 commented 2 years ago

When a user defined environment variable containing system environment variable appears in the command line, it's not being interpolated properly. Example configuration:

...
command: ${BIN_PATH}/example.bin
env:
  BIN_PATH: ${HOME}/bin
...

expected command line: /home/user/bin/example.bin
actual value: ${HOME}/bin/example.bin