Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
moggieuk committed Dec 11, 2024
2 parents 5c8db7e + ee76570 commit d984625
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,10 @@ self_update() {

if [ -n "${RESTART}" ]; then
git checkout $BRANCH --quiet
git pull --quiet --force
if git symbolic-ref -q HEAD > /dev/null; then
# On a branch (if using tags we will be detached)
git pull --quiet --force
fi
GIT_VER=$(git describe --tags)
echo -e "${B_GREEN}Now on git version ${GIT_VER}"
echo -e "${B_GREEN}Running the new install script..."
Expand Down

0 comments on commit d984625

Please sign in to comment.