From 2ec5f5f33f89f797c3d46d0f9a1f69c366f10c72 Mon Sep 17 00:00:00 2001 From: Dimitrios Giannopoulos <dimit.giannopoulos@upnet.gr> Date: Mon, 22 Jan 2024 20:27:59 +0000 Subject: [PATCH] quiet apt get install --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index be9f4eb5..c13fae74 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ pages: HTTPS_REMOTE: https://gitlab-ci-token:${ACCESS_TOKEN}@${CI_SERVER_HOST}/rep/${CI_PROJECT_PATH}.git before_script: - pip install -q mkdocs-material mike - - apt-get update -qq && apt-get -qq install -y git + - apt-get update -qq && apt-get install -qq -o=Dpkg::Use-Pty=0 -y git - git config user.name $GITLAB_USER_NAME - git config user.email $GITLAB_USER_EMAIL - git fetch origin $PAGES_BRANCH && git checkout $PAGES_BRANCH || git checkout -b $PAGES_BRANCH origin/$PAGES_BRANCH || echo "Pages branch not deployed yet." -- GitLab