diff options
author | lukefromdc <[email protected]> | 2024-11-26 15:48:13 -0500 |
---|---|---|
committer | Luke from DC <[email protected]> | 2024-11-27 03:47:58 +0000 |
commit | a0fbbf6b2eebd93642822199ff1a5bb2763255fe (patch) | |
tree | b05f2cd39ff339b344de52a7cf3187004bac07ea | |
parent | c52b0a7f787bf29bfa397eec85713121c90fc8f0 (diff) | |
download | mate-applets-a0fbbf6b2eebd93642822199ff1a5bb2763255fe.tar.bz2 mate-applets-a0fbbf6b2eebd93642822199ff1a5bb2763255fe.tar.xz |
ci: use pip3 install not pip install for Travis
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 17c1c46c..5fd4ab48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,15 +20,10 @@ before_install: - chmod +x docker-build gen-index install: -install: - - sudo apt-get install -y python3-pip python3-setuptools - - sudo pip3 install --upgrade pip - - - sudo pip install PyGithub - - - ./docker-build --name ${DISTRO} --config .travis.yml --install + - sudo pip3 install PyGithub + - ./docker-build --name ${DISTRO} --config .build.yml --install script: - ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts |