use scripts from live, not what's pushed into the dockerfile

This commit is contained in:
ThePhD 2018-01-08 12:45:12 -05:00
parent d45daccc8a
commit 81b2e1fc66
3 changed files with 5 additions and 4 deletions

View File

@ -24,4 +24,5 @@
**
# Except the script directory
!scripts/
!scripts/preparation.*
!scripts/build.*

View File

@ -63,4 +63,4 @@ RUN ["/usr/bin/env", "zsh", "-e", "/root/sol2-scripts/preparation.linux.sh"]
# gets "saved" in...
# it only runs the last CMD/ENTRYPOINT as the default behavior:
# multiple CMDs will not be respected
ENTRYPOINT ["/usr/bin/env", "zsh", "-e", "/root/sol2-scripts/run.linux.sh"]
ENTRYPOINT ["/usr/bin/env", "zsh", "-e", "/root/sol2/scripts/run.linux.sh"]

View File

@ -23,7 +23,7 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
echo -en "travis_fold:start:build_preparation.1\r"
if [ -z "${SOL2_DIR}"]
if [ -z "${SOL2_DIR}" ]
then
if [ ${CI} = true ]
then
@ -33,7 +33,7 @@ echo -en "travis_fold:start:build_preparation.1\r"
fi
fi
if [ -z "${LUA_VERSION}"]
if [ -z "${LUA_VERSION}" ]
then
export LUA_VERSION=5.3.4
fi