Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
FIX: when configure tries to update the mux lists through git it woul…
…d cause a fail if anything had been changed in the Data/dvb-scan folder

changed the inital git pull to a git fetch and added git pull after the git reset to make sure they have the latest files
  • Loading branch information
Gary The Brown authored and perexg committed Sep 1, 2014
1 parent 1b3fe3d commit 6f7ddb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion support/getmuxlist
Expand Up @@ -11,8 +11,9 @@ DIR=$1
if [ -d "${DIR}/.git" ]; then
LAST=$(pwd)
cd "${DIR}" || exit 1
git pull > /dev/null 2>&1 || exit 1
git fetch > /dev/null 2>&1 || exit 1
git reset --hard > /dev/null 2>&1 || exit 1
git pull > /dev/null 2>&1 || exit 1
cd "${LAST}" || exit 1
# Fetch
elif [ ! -d "${DIR}" ]; then
Expand Down

0 comments on commit 6f7ddb3

Please sign in to comment.