Skip to content

Commit

Permalink
Script Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
anupam-git committed Feb 17, 2018
1 parent e22a79d commit 26b4f6f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.sh
@@ -1,8 +1,6 @@
#/bin/bash

echo $IS_CI

if [ $IS_CI != "true" ]
if [ -z "$IS_CI" ]
then
echo "deb http://in.archive.ubuntu.com/ubuntu/ trusty main" | sudo tee /etc/apt/sources.list.d/trusty.list
sudo add-apt-repository ppa:jonathonf/ffmpeg-3 --yes
Expand Down Expand Up @@ -40,7 +38,7 @@ cd libdsm
./bootstrap
./configure
make -j$(nproc)
sudo -j$(nproc) make install
sudo make -j$(nproc) install
cd ..

git clone https://github.com/sahlberg/libnfs.git
Expand Down

0 comments on commit 26b4f6f

Please sign in to comment.