Skip to content

Commit

Permalink
using pip3 is causing issues, use whatever pip the user has in their …
Browse files Browse the repository at this point in the history
…environment
  • Loading branch information
eacmen committed Mar 24, 2021
1 parent 7fc3de1 commit 8f62e92
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ os: linux
dist: bionic
language: python
arch: amd64
sudo: true
addons:
apt:
update: true
Expand Down
3 changes: 1 addition & 2 deletions deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ fi
PYTHON3_APT_CANDIDATES=""
PYTHON3_YUM_CANDIDATES=""
YUM_CANDIDATES="git gcc gcc-c++ make openssl-devel qtwebkit-devel qt-devel gzip bzip2 tar arj p7zip p7zip-plugins cabextract squashfs-tools zlib zlib-devel lzo lzo-devel xz xz-compat-libs xz-libs xz-devel xz-lzma-compat python-backports-lzma lzip pyliblzma perl-Compress-Raw-Lzma lzop srecord"
PIP_COMMANDS="pip"

# Check for root privileges
if [ $UID -eq 0 ]
Expand Down Expand Up @@ -91,7 +90,7 @@ function install_sasquatch
function install_jefferson
{
git clone https://github.com/sviehb/jefferson
(cd jefferson && $SUDO pip3 install -r requirements.txt && $SUDO python3 setup.py install)
(cd jefferson && $SUDO pip install -r requirements.txt && $SUDO python3 setup.py install)
$SUDO rm -rf jefferson
}

Expand Down

0 comments on commit 8f62e92

Please sign in to comment.