don't bundle no-inst scripts
This commit is contained in:
parent
a8143ea44e
commit
b244daf087
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user