pozgo / docker-mkdocs

MkDocs in a Docker. (Alpine)
MIT License
87 stars 36 forks source link

live reload problem #8

Closed fglaeser closed 4 years ago

fglaeser commented 5 years ago

Hi, if I add the variable LIVE_RELOAD_SUPPORT='true' the reload feature is disabled. When I checked the bootstrap.sh I found this :

    if [[ ${LIVE_RELOAD_SUPPORT} == 'true' ]]; then
        LRS='--no-livereload'
    else
        LRS=''
    fi

I think the IF is wrong, if I set the variable in true is because I want the reload support enabled.

If I remove the variable the reload support is enabled.

Best regards.

pozgo commented 4 years ago

Fixed with PR #12