diff options
Diffstat (limited to '')
| -rw-r--r-- | scan-tree.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/scan-tree.c b/scan-tree.c index b5b50f3..a0e09ce 100644 --- a/scan-tree.c +++ b/scan-tree.c @@ -81,6 +81,10 @@ static void add_repo(const char *base, const char *path, repo_config_fn fn)  			path, strerror(errno), errno);  		return;  	} + +	if (ctx.cfg.strict_export && stat(fmt("%s/%s", path, ctx.cfg.strict_export), &st)) +		return; +  	if (!stat(fmt("%s/noweb", path), &st))  		return; | 
