diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 00:48:20 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 00:48:20 +0100 |
commit | 82bfaab0b6487697b12c8544b6c70e72b4e4f7cf (patch) | |
tree | fb30f4ffe2c7b3f1c8a5c4a4b4ed02373649554d /tools/check_loading | |
parent | 8c2f3d46390d2f44d2fcd58cd4f39ad621e6b3db (diff) | |
parent | 7d430af815626bb783f0eb435d7df549733958d2 (diff) | |
download | ffi-efl-82bfaab0b6487697b12c8544b6c70e72b4e4f7cf.zip ffi-efl-82bfaab0b6487697b12c8544b6c70e72b4e4f7cf.tar.gz |
Merge branch 'master' of asynk.ch:ffi-efl
Diffstat (limited to 'tools/check_loading')
-rwxr-xr-x | tools/check_loading | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/check_loading b/tools/check_loading index 0814e78..0d082ed 100755 --- a/tools/check_loading +++ b/tools/check_loading @@ -18,11 +18,11 @@ function run () { function each () { echo $($RUBY --version) echo " lib/efl/native/*.rb" - for native in $(find $parentdir/lib/efl/native/ -name *.rb | sort); do + for native in $(find $parentdir/lib/efl/native/ -name 'e*.rb' | sort); do run $native done echo " lib/efl/*.rb" - for wrapper in $(find $parentdir/lib/efl/ -name e*.rb | grep -v native | sort); do + for wrapper in $(find $parentdir/lib/efl/ -name 'e*.rb' | grep -v native | sort); do run $wrapper done } |