From c069bf2653ef2bbdeef6211785166f66f6c89a82 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 22 Feb 2021 22:27:36 +0100 Subject: [PATCH] fixes workflow --- .github/workflows/ubuntu.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 4b5965bc7..d594a4d06 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -18,8 +18,8 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip - pip install ansicolors - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + python -m pip install ansicolors + if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi - name: make clean run: make clean @@ -49,8 +49,8 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip - pip install ansicolors - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + python -m pip install ansicolors + if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi - name: make clean run: make clean @@ -81,8 +81,8 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip - pip install ansicolors - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + python -m pip install ansicolors + if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi - name: Prepare Build Folders run: mkdir -p client/build