Skip to content
Snippets Groups Projects
Commit 7ea19cba authored by esaunders's avatar esaunders
Browse files

Fix typo.

parent 5e91777d
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
set -ex
installLib() {
wget https://github.com/libyal/$1/releases/download/$2/$1-alpha-$2.tar.gz
tar -xzf $1-alpha-$2.tar.gz
cd $1-$2
if test ${TRAVIS_OS_NAME} = "linux"; then
./configure -prefix=/usr > /dev/null
else
./configure > /dev/null
fi
make > /dev/null && sudo make install > /dev/null
cd ..
}
installLib libvhdi 20181227
installLib libvmdk 20181227
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment