diff options
author | Elias Müller <elias.mr1@gmail.com> | 2022-07-09 19:58:34 +0200 |
---|---|---|
committer | jaseg <136313+jaseg@users.noreply.github.com> | 2022-07-11 12:44:47 +0200 |
commit | 3c25b1d9f390e7feda3514f480658c6ef6e9063a (patch) | |
tree | c5f7ab1d1c9858dbef25ba8d71177b1bdc7d498a | |
parent | 6f07273482fad7036d83cb0bc80153061798224d (diff) | |
download | python-mpv-3c25b1d9f390e7feda3514f480658c6ef6e9063a.tar.gz python-mpv-3c25b1d9f390e7feda3514f480658c6ef6e9063a.tar.bz2 python-mpv-3c25b1d9f390e7feda3514f480658c6ef6e9063a.zip |
Fix package upgrade
-rw-r--r-- | .github/workflows/tests.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7e0c067..8a0d066 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,7 +32,8 @@ jobs: run: | function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } - execute sudo apt update -y && sudo apt upgrade -y + execute sudo apt update -y + execute sudo apt upgrade -y - name: 'Install Dependencies' run: | function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } |