Skip to content

Commit

Permalink
fix opencv install script #7
Browse files Browse the repository at this point in the history
  • Loading branch information
aroman committed Mar 21, 2017
1 parent 937ccb7 commit 631178a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install_opencv.sh
Expand Up @@ -9,10 +9,10 @@ if [ -d "opencv-$OPENCV_VERSION" ]; then
sudo rm -r "opencv-$OPENCV_VERSION"
fi

curl -sLO https://github.com/opencv/opencv/archive/$OPENCV_VERSION.tar.gz
curl -SLO https://github.com/opencv/opencv/archive/$OPENCV_VERSION.tar.gz
tar xf $OPENCV_VERSION.tar.gz
rm $OPENCV_VERSION.tar.gz
cd $OPENCV_VERSION
cd opencv-$OPENCV_VERSION
mkdir build
cd build
echo "Installing OpenCV..."
Expand Down

0 comments on commit 631178a

Please sign in to comment.