From 0b046ea8cf6224b4d12550cb576c958398e021b3 Mon Sep 17 00:00:00 2001 From: Alex Grin Date: Thu, 16 Jun 2016 22:41:08 -0400 Subject: [PATCH] fix flipped if statement --- packaging/ubuntu/ubuntu_package_setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/ubuntu/ubuntu_package_setup.sh b/packaging/ubuntu/ubuntu_package_setup.sh index 813cd397d..3388570a7 100755 --- a/packaging/ubuntu/ubuntu_package_setup.sh +++ b/packaging/ubuntu/ubuntu_package_setup.sh @@ -108,9 +108,9 @@ $SUDO pip install make-deb # dpkg-buildpackage outputs its results into '..' so # we need to move/clone lbry into the build directory if [ "$CLONE" == true ]; then - cp -a $SOURCE_DIR lbry -else git clone https://github.com/lbryio/lbry.git +else + cp -a $SOURCE_DIR lbry fi ( cd lbry