Skip to content
Snippets Groups Projects
Commit 43ffa5f9 authored by esaunders's avatar esaunders
Browse files

Make script executable.

parent 7ea19cba
Branches
Tags
No related merge requests found
File mode changed from 100644 to 100755
#!/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