mirror of
https://github.com/NixOS/nix
synced 2025-07-07 18:31:49 +02:00
Fix broken patch
This commit is contained in:
parent
8a02fdc38e
commit
bf4a577a58
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ my %requests;
|
|||
my %scheduled;
|
||||
my $caBundle = $ENV{"CURL_CA_BUNDLE"} // $ENV{"OPENSSL_X509_CERT_FILE"};
|
||||
|
||||
my $userName = getpwuid($<) or $ENV{"USER"} or die "cannot figure out user name";
|
||||
my $userName = getpwuid($<) || $ENV{"USER"} or die "cannot figure out user name";
|
||||
|
||||
my $requireSignedBinaryCaches = ($Nix::Config::config{"signed-binary-caches"} // "0") ne "0";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue