From 2c6f22b30e509e977becb1320e3b2b0e093a23d7 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 23 May 2021 06:29:23 +0200 Subject: [PATCH] Update run.sh --- addons_updater/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons_updater/run.sh b/addons_updater/run.sh index 963db59ee..3b22e2a9e 100644 --- a/addons_updater/run.sh +++ b/addons_updater/run.sh @@ -145,8 +145,8 @@ for addons in $(bashio::config "addon|keys"); do git commit -m "Update to ${LASTVERSION}" >/dev/null LOGINFO="... $SLUG : push to github" && if [ $VERBOSE = true ]; then bashio::log.info $LOGINFO; fi - git remote set-url origin "https://${GITUSER}:${GITPASS}@github.com/${REPOSITORY}" >/dev/null - git push >/dev/null + git remote set-url origin "https://${GITUSER}:${GITPASS}@github.com/${REPOSITORY}" --quiet >/dev/null + git push --quiet >/dev/null #Log bashio::log.yellow "... $SLUG updated from ${CURRENT} to ${LASTVERSION}"