diff --git a/run/scripts/info b/run/scripts/info index ae00b33f6b19fb2fa454d496d5a76a069eef1927..d8024647c43f593c1e74397b254a2a4c55a10d07 100755 --- a/run/scripts/info +++ b/run/scripts/info @@ -22,9 +22,13 @@ function infol3d() { ${SCRIPTPATH}/list else if [[ "$1" == "info" ]]; then - echo "Here we will be printing useful information soon !!!" + if [[ -f .env ]]; then + more .env + fi else - echo "You're calling L3D inside of L3D, that's not useful." + echo -e "\\033[31m ======================================== \\033[0m" + echo -e "\\033[31m Calling L3D inside of L3D is not useful. \\033[0m" + echo -e "\\033[31m ======================================== \\033[0m" fi fi sectionFooter diff --git a/run/scripts/selfupdate b/run/scripts/selfupdate index ef93142f9b500fb037a800a2422f063dc56f6389..9c6be233ebeb0a28254f59c117d2e00056d697db 100755 --- a/run/scripts/selfupdate +++ b/run/scripts/selfupdate @@ -19,18 +19,22 @@ if [[ "$UPDATE" == *"setup:${NEWVERSION} not found"* ]]; then fi echo "Self update to version ${NEWVERSION} succeeded!" - -export L3DVERSION=${NEWVERSION} -export L3D_FORCE_UPDATE=0 -/usr/local/bin/reset - echo "" echo "" echo "" -echo "================================================================" -echo "It's recommended to run" +echo "==================================================================" +echo "The cleanup process only removes unused and outdated components." +echo "If you also want to update the components of your current projects" +echo "you need to run" +echo "" +echo -e " \\033[31m l3d reset \\033[0m" echo "" -echo " l3d reset" +echo "when the self-update has completed." +echo "==================================================================" echo "" -echo "now, so that we can clean the legacy components properly." -echo "================================================================" +echo "" +echo "" + +export L3DVERSION=${NEWVERSION} +export L3D_FORCE_UPDATE=0 +/usr/local/bin/reset diff --git a/start.sh b/start.sh index afb271dfa23fb601cb403052647191d2a02246d1..b9c668381c8b3bd65af057322b78a0a73ca823cc 100755 --- a/start.sh +++ b/start.sh @@ -192,9 +192,9 @@ readEnv # Validate PHP version INSTALLED_PHP_VERSION=$(php -r "echo(substr(phpversion(),0,3));") if [[ "$INSTALLED_PHP_VERSION" != "$PHP_VERSION" ]]; then - echo -e "\\033[31m" ============================================= "\\033[0m" - echo -e "\\033[31m" ERROR: PHP $INSTALLED_PHP_VERSION installed but $PHP_VERSION expected !!! "\\033[0m" - echo -e "\\033[31m" ============================================= "\\033[0m" + echo -e "\\033[31m ============================================= \\033[0m" + echo -e "\\033[31m ERROR: PHP $INSTALLED_PHP_VERSION installed but $PHP_VERSION expected !!! \\033[0m" + echo -e "\\033[31m ============================================= \\033[0m" fi if [[ "$COMPOSER_DOWNGRADE" == "1" ]]; then composer self-update --1