Commit 5dbb5b6c authored by Dmitriy Safronov's avatar Dmitriy Safronov
Browse files

more silence

parent 7c6d51be
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -11,9 +11,9 @@ rm -rvf * || die "Couldn't remove files"

if [ -n "$OPENWRT_GIT_URL" ]; then

    git clone "$OPENWRT_GIT_URL" . || die "Couldn't clone repo"
    git config user.email "${OPENWRT_GIT_EMAIL:-openwrt@example.com}" || die "Couldn't set email"
    git config user.name "${OPENWRT_GIT_NAME:-OpenWRT Git bot}" || die "Couldn't set name"
    git clone "$OPENWRT_GIT_URL" . > /dev/null || die "Couldn't clone repo"
    git config user.email "${OPENWRT_GIT_EMAIL:-openwrt@example.com}" > /dev/null || die "Couldn't set email"
    git config user.name "${OPENWRT_GIT_NAME:-OpenWRT Git bot}" > /dev/null || die "Couldn't set name"

    while true; do
        git reset --hard > /dev/null || die "Couldn't reset repo"