Skip to content
Snippets Groups Projects
Commit ddf18fe9 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Nicolas Pomepuy
Browse files

compile-medialibrary.sh: Fix comparison when RESET isn't set

parent 1b9af904
No related branches found
Tags 3.0.0-rc4
1 merge request!1177CI: Parallelize release libs jobs
......@@ -104,7 +104,7 @@ if [ ! -d "${MEDIALIBRARY_MODULE_DIR}/medialibrary" ]; then
# TODO: remove when switching to VLC 4.0
cd libvlcpp
git am ${SRC_DIR}/buildsystem/patches/libvlcpp/*
elif [ $RESET -eq 1 ]; then
elif [ "$RESET" = "1" ]; then
cd ${SRC_DIR}/medialibrary/medialibrary
git reset --hard ${MEDIALIBRARY_HASH}
git submodule update --init libvlcpp
......
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