don't bundle no-inst scripts
authorRobin Gareus <robin@gareus.org>
Wed, 10 Aug 2016 01:18:07 +0000 (03:18 +0200)
committerRobin Gareus <robin@gareus.org>
Wed, 10 Aug 2016 01:18:07 +0000 (03:18 +0200)
tools/linux_packaging/build
tools/osx_packaging/osx_build

index e032dd0796c210a3663de0300fc18e714727c32b..cee48ced28971fa9f861cb96662585cbaa0edab4 100755 (executable)
@@ -394,6 +394,9 @@ done
 # Lua Scripts 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
 
index c05e25638e728b9f0a2f4da1f9977880733ba9be..68bb675626d0f93b947fa23abcaa3ac1f3e6ddfe 100755 (executable)
@@ -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