This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
SisMaker
/
rebar3
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
62
Wiki
Activity
Browse Source
Merge pull request
#2001
from ferd/fix-perf-regression
Fix performance regression in compiler around behaviours
pull/2004/head
Fred Hebert
6 years ago
committed by
GitHub
parent
84aff82208
a0bf538f18
commit
369ff85dd6
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/rebar_compiler_erl.erl
+ 1
- 1
src/rebar_compiler_erl.erl
View File
@ -317,7 +317,7 @@ expand_file_names(Files, Dirs) ->
true
-
>
[
Incl
]
;
false
-
>
rebar_utils
:
find_files_in_dirs
(
Dirs
,
Incl
,
true
)
rebar_utils
:
find_files_in_dirs
(
Dirs
,
[
$^
,
Incl
,
$$
]
,
true
)
end
end
,
Files
)
.
Write
Preview
Loading…
Cancel
Save