geodynamics / vq

Virtual Quake is a boundary element code designed to investigate long term fault system behavior and interactions between faults through stress transfer.
Other
12 stars 24 forks source link

Fix temp envvar declaration #202

Closed tjesser-ucdavis-edu closed 5 years ago

tjesser-ucdavis-edu commented 5 years ago

How embarrassing, I thought I had tested #201 correctly.

The error is that temporary envvar declarations don't carry over when chaining processes together.

As an example:

$ TEST='set' eval 'echo envvar is $TEST' && eval 'echo envvar is $TEST'
envvar is set
envvar is 
$