Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue gittup#483 - fix getenv call to only specify variable name
Tup was previously calling getenv("FOO=bar") to retrieve envvar FOO inside tup_db_findenv. This worked on macOS, but not on Linux. Updated to call getenv(varname) instead (e.g. getenv("FOO")). Fixes gittup#483
- Loading branch information