diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-11-22T15·06+0100 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-09-01T02·21+0000 |
commit | 785cb3a75476033ba6eec2fef334d47d8e64388a (patch) | |
tree | 676d53868e29e0ab28443b9d13019c54754012f7 /third_party/nix/src/nix-prefetch-url | |
parent | c5f3b12f0484cd1a5152b6c64a336e9852d7c484 (diff) |
refactor(tvix): getEnv(): Return std::optional r/1756
This allows distinguishing between an empty value and no value. Patch ported from upstream at https://github.com/NixOS/nix/commit/ba87b08f8529e4d9f8c58d8c625152058ceadb75 Change-Id: I061cc8e16b1a7a0341adfc3b0edca1c0c51d5c97 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1884 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
Diffstat (limited to 'third_party/nix/src/nix-prefetch-url')
-rw-r--r-- | third_party/nix/src/nix-prefetch-url/nix-prefetch-url.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/nix-prefetch-url/nix-prefetch-url.cc b/third_party/nix/src/nix-prefetch-url/nix-prefetch-url.cc index c718ef5f4781..b61a38a7f193 100644 --- a/third_party/nix/src/nix-prefetch-url/nix-prefetch-url.cc +++ b/third_party/nix/src/nix-prefetch-url/nix-prefetch-url.cc @@ -59,7 +59,7 @@ static int _main(int argc, char** argv) { { HashType ht = htSHA256; std::vector<std::string> args; - bool printPath = !getEnv("PRINT_PATH").empty(); + bool printPath = getEnv("PRINT_PATH").has_value(); bool fromExpr = false; std::string attrPath; bool unpack = false; |