Skip to content

Commit

Permalink
Fixed Travis build mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
racerxdl committed Mar 9, 2019
1 parent 6d2fe52 commit 4d26582
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions travis-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ then
echo "Building RTLSDR"
git clone https://github.com/librtlsdr/librtlsdr.git
cd librtlsdr
mkdir build && cd build
mkdir -p build && cd build
cmake ..
make -j10
sudo make install
Expand All @@ -27,7 +27,7 @@ then
git clone https://github.com/myriadrf/LimeSuite.git
cd LimeSuite
git checkout stable
mkdir builddir && cd builddir
mkdir -p builddir && cd builddir
cmake ../ -DBUILD_SHARED_LIBS=OFF
make -j10
sudo make install
Expand Down

0 comments on commit 4d26582

Please sign in to comment.