From 5bb0a07fae8adbb4e0f18d4e2a1e864637f7bc6c Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 22 Feb 2019 20:09:17 -0500 Subject: [PATCH] pip with git does not appear to work in wine --- scripts/wine_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/wine_build.sh b/scripts/wine_build.sh index b2827caf4..175adbc11 100755 --- a/scripts/wine_build.sh +++ b/scripts/wine_build.sh @@ -5,9 +5,9 @@ rm -rf /tmp/.wine-* apt-get -qq update apt-get -qq install -y git -python -m pip install --upgrade pip pip install setuptools_scm -pip install git+https://github.com/lbryio/torba.git +git clone https://github.com/lbryio/torba.git --depth 1 +cd torba && pip install -e . && cd .. cd lbry