aboutsummaryrefslogtreecommitdiffstats
path: root/func.go
diff options
context:
space:
mode:
Diffstat (limited to 'func.go')
-rw-r--r--func.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/func.go b/func.go
index a0d743b..3a944d5 100644
--- a/func.go
+++ b/func.go
@@ -771,14 +771,14 @@ func (f *funcShell) Compact() Value {
}
}
if dir, ok := matchAndroidFindFileInDir(expr); ok {
- androidFindCache.init()
+ androidFindCache.init(nil)
return &funcShellAndroidFindFileInDir{
funcShell: f,
dir: dir,
}
}
if chdir, roots, ok := matchAndroidFindJavaInDir(expr); ok {
- androidFindCache.init()
+ androidFindCache.init(nil)
return &funcShellAndroidFindJavaInDir{
funcShell: f,
chdir: chdir,
@@ -786,7 +786,7 @@ func (f *funcShell) Compact() Value {
}
}
if dir, ok := matchAndroidFindJavaResourceFileGroup(expr); ok {
- androidFindCache.init()
+ androidFindCache.init(nil)
return &funcShellAndroidFindJavaResourceFileGroup{
funcShell: f,
dir: dir,