mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
NarAccessor: Fix handling of non-executable files
This commit is contained in:
parent
d961c29c9c
commit
f43823f676
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ struct NarIndexer : ParseSink, StringSource
|
||||||
|
|
||||||
Path currentPath;
|
Path currentPath;
|
||||||
std::string currentStart;
|
std::string currentStart;
|
||||||
bool isExec;
|
bool isExec = false;
|
||||||
|
|
||||||
NarIndexer(const std::string & nar) : StringSource(nar)
|
NarIndexer(const std::string & nar) : StringSource(nar)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue