Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #483 - fix getenv call to only specify variable name #489

Closed
wants to merge 1 commit into from

Commits on Jan 18, 2024

  1. 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
    petemoore committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    e14ef76 View commit details
    Browse the repository at this point in the history