Skip to content
Snippets Groups Projects
Commit f94df446 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Update medialibrary if needed

parent f5267206
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,8 @@ checkfail()
# ARGUMENTS #
#############
MEDIALIBRARY_HASH=fca3c80
RELEASE=0
ASAN=0
while [ $# -gt 0 ]; do
......@@ -783,6 +785,12 @@ if [ ! -d "${MEDIALIBRARY_MODULE_DIR}/medialibrary" ]; then
echo -e "\e[1m\e[32mmedialibrary source not found, cloning\e[0m"
git clone http://code.videolan.org/videolan/medialibrary.git "${SRC_DIR}/medialibrary/medialibrary"
checkfail "medialibrary source: git clone failed"
else
cd ${MEDIALIBRARY_MODULE_DIR}/medialibrary
if ! git cat-file -e ${MEDIALIBRARY_HASH}; then
git pull --rebase
fi
cd -
fi
if [ ! -d "${MEDIALIBRARY_MODULE_DIR}/libvlcpp" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment