fix flipped if statement

This commit is contained in:
Alex Grin 2016-06-16 22:41:08 -04:00 committed by GitHub
parent 7133f05fea
commit 0b046ea8cf

View file

@ -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