diff --git a/DbContinuousIntegrationWrapper.sh b/DbContinuousIntegrationWrapper.sh index 7a3b895..778119f 100755 --- a/DbContinuousIntegrationWrapper.sh +++ b/DbContinuousIntegrationWrapper.sh @@ -13,10 +13,14 @@ do /usr/bin/php package.json.php > package.json touch -t $(/usr/bin/mariadb -se "SELECT DATE_FORMAT(LastUpdated, '%Y%m%d%H%i.%s') FROM SYS_PRD_BND.Npm ORDER BY LastUpdated DESC LIMIT 1") package.json - # 3. Download all the 3rd party packages (composer, npm, pip) + # 3. Sync PythonPi 3rd party Python packages + /usr/bin/php requirements.txt.php > requirements.txt + touch -t $(/usr/bin/mariadb -se "SELECT DATE_FORMAT(LastUpdated, '%Y%m%d%H%i.%s') FROM SYS_PRD_BND.PyPi ORDER BY LastUpdated DESC LIMIT 1") requirements.txt + + # 4. Download all the 3rd party packages (composer, npm, pip) make - # 4. Continuous integration script (react functions) + # 5. Continuous integration script (react functions) /usr/bin/php DbContinuousIntegration.php sleep 10 done