summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-08-10 03:18:07 +0200
committerRobin Gareus <robin@gareus.org>2016-08-10 03:18:07 +0200
commitb244daf08753813ba22116f082286f19bbd834fe (patch)
treebf9dbf6803ac08fb4526ca73cd9eeddcff124b78 /tools/osx_packaging
parenta8143ea44e83a87fb6a9500d59409a14a94ad655 (diff)
don't bundle no-inst scripts
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index c05e25638e..68bb675626 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -401,6 +401,9 @@ done
# Lua Script Files
# got to be careful with names here
for x in $BUILD_ROOT/../scripts/*.lua ; do
+ if test "${x:0:1}" = "_"; then
+ continue;
+ fi
cp "$x" $LuaScripts
done