diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-07-25 14:10:04 -0500 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-07-25 14:10:04 -0500 |
commit | 19c215ee9fe0726a1983b36f4f8bcc21d42a5ef8 (patch) | |
tree | 8a47941bbc34397269c9b42a84e33db6d0294476 /src/rebar_appups.erl | |
parent | e8a6cfe04ab0612dcd089c7aed035520e3dd9aee (diff) | |
parent | 3fb4a7c540da227382ea0831c0c6424765900123 (diff) |
Merge pull request #299 from tuncer/rok-resource-forks
Fix OS X resource fork handling (Reported-by: Richard O'Keefe)
Diffstat (limited to 'src/rebar_appups.erl')
-rw-r--r-- | src/rebar_appups.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_appups.erl b/src/rebar_appups.erl index a51c30d..38e7b72 100644 --- a/src/rebar_appups.erl +++ b/src/rebar_appups.erl @@ -70,7 +70,7 @@ %% Get a list of any appup files that exist in the new release NewAppUpFiles = rebar_utils:find_files( - filename:join([NewVerPath, "lib"]), "^.*.appup$"), + filename:join([NewVerPath, "lib"]), "^[^._].*.appup$"), %% Convert the list of appup files into app names AppUpApps = [file_to_name(File) || File <- NewAppUpFiles], |