chore: drop extra echo in app-json method calls

This commit is contained in:
Jose Diaz-Gonzalez
2019-03-12 12:08:15 -04:00
parent dc6abe691a
commit 6797971016

View File

@@ -58,7 +58,6 @@ execute_script() {
COMMAND+=" for file in /app/.profile.d/*; do source \$file; done ; "
COMMAND+=" fi ; "
COMMAND+=" if [[ -d '/cache' ]]; then "
COMMAND+=" echo restoring installation cache... ; "
COMMAND+=" rm -rf /tmp/cache ; "
COMMAND+=" ln -sf /cache /tmp/cache ; "
COMMAND+=" fi ; "
@@ -73,7 +72,6 @@ execute_script() {
COMMAND+=" $SCRIPT_CMD || exit 1;"
COMMAND+=" if [[ -d '/cache' ]]; then "
COMMAND+=" echo removing installation cache... ; "
COMMAND+=" rm -f /tmp/cache ; "
COMMAND+=" fi ; "