From 013ae437f41008892f9ad1a24a0b173b26fb41e3 Mon Sep 17 00:00:00 2001 From: Alexander Hosking Date: Thu, 14 Apr 2022 22:54:49 -0400 Subject: [PATCH] Fix Typo --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6784bf..23fde78 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,14 +7,14 @@ buiild job: script: - export PYTHONPATH=. - export FLASK_APP=period - - apt-get udate -qy - - apt-get install -y python3-dev python3-pip + - sudo apt-get update -qy + - sudo apt-get install -y python3-dev python3-pip - pip3 install Flask gunicorn pytest pytest-cov - pytest tests --cov --cov-report term --cov-report html deploy job: stage: deploy script: - - apt-get update -qy - - apt-get install curl -y + - sudo apt-get update -qy + - sudo apt-get install curl -y - curl period.ahosking.com/reload?password=BananaHammocks \ No newline at end of file