summaryrefslogtreecommitdiffstats
path: root/tools/check_loading
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-03-07 00:48:20 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-03-07 00:48:20 +0100
commit82bfaab0b6487697b12c8544b6c70e72b4e4f7cf (patch)
treefb30f4ffe2c7b3f1c8a5c4a4b4ed02373649554d /tools/check_loading
parent8c2f3d46390d2f44d2fcd58cd4f39ad621e6b3db (diff)
parent7d430af815626bb783f0eb435d7df549733958d2 (diff)
downloadffi-efl-82bfaab0b6487697b12c8544b6c70e72b4e4f7cf.zip
ffi-efl-82bfaab0b6487697b12c8544b6c70e72b4e4f7cf.tar.gz
Merge branch 'master' of asynk.ch:ffi-efl
Diffstat (limited to 'tools/check_loading')
-rwxr-xr-xtools/check_loading4
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
}