don't bundle no-inst scripts

This commit is contained in:
Robin Gareus 2016-08-10 03:18:07 +02:00
parent a8143ea44e
commit b244daf087
2 changed files with 6 additions and 0 deletions

View File

@ -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

View File

@ -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