summaryrefslogtreecommitdiff
path: root/scripts/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/wscript')
-rw-r--r--scripts/wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/wscript b/scripts/wscript
index acf8ae76b4..e7c31d6f67 100644
--- a/scripts/wscript
+++ b/scripts/wscript
@@ -9,7 +9,8 @@ def configure(conf):
pass
def build(bld):
- scripts = bld.path.ant_glob ('*.lua')
+ scripts = bld.path.ant_glob ('*.lua', excl=['^_*'])
+ print scripts
bld.install_files (os.path.join(bld.env['DATADIR'], 'scripts'), scripts)
def options(opt):