diff --git a/root/etc/cont-init.d/30-script-update.bash b/root/etc/cont-init.d/30-script-update.bash index b4c5375..ed838a3 100644 --- a/root/etc/cont-init.d/30-script-update.bash +++ b/root/etc/cont-init.d/30-script-update.bash @@ -1,16 +1,8 @@ #!/usr/bin/with-contenv bash # update from git -if [[ "${UPDATE_EXT}" == "TRUE" ]]; then - git -C ${SABSCRIPTS_PATH} reset --hard HEAD && \ - git -C ${SABSCRIPTS_PATH} pull origin master -fi - -# update from git -if [[ "${UPDATE_SMA}" == "TRUE" ]]; then - git -C ${SMA_PATH} reset --hard HEAD && \ - git -C ${SMA_PATH} pull origin master -fi +git -C ${SMA_PATH} reset --hard HEAD && \ +git -C ${SMA_PATH} pull origin master # update pip3 requirements pip3 install -r /usr/local/sma/setup/requirements.txt --upgrade --user