diff --git a/DbContinuousIntegrationWrapper.sh b/DbContinuousIntegrationWrapper.sh index 5aabcfe..361d5f5 100755 --- a/DbContinuousIntegrationWrapper.sh +++ b/DbContinuousIntegrationWrapper.sh @@ -5,6 +5,8 @@ if [[ -n "${DB_HOST:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -h $DB_HOST"; fi if [[ -n "${DB_USER:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -u $DB_USER"; fi if [[ -n "${DB_PASS:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -p$DB_PASS"; fi +PATH=/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin + while [[ 1 ]] do diff --git a/Makefile b/Makefile index 0b3bb9a..9ee48f6 100644 --- a/Makefile +++ b/Makefile @@ -16,3 +16,6 @@ install: @echo '@reboot /bin/bash /root/DbContinuousIntegration/DbContinuousIntegrationWrapper.sh 2> /dev/null > /dev/null &' @echo @echo 'CREATE TABLE SYS_PRD_BND.Tables (Name, onUpdate_phpCode, onUpdate_pyCode, onUpdate_jsCode, LastUpdated);' | sudo mysql + @echo + @echo 'For DEBIAN:' + @echo 'apt get install pip composer'