optional forcing installs

This commit is contained in:
rootzoll 2020-05-24 17:18:33 +02:00
parent 9b6b7423fe
commit b7164f71a0

View File

@ -127,7 +127,7 @@ echo "# Checking if the content of BlitzPy changed .."
checkSumBlitzPyAfter=$(find /home/admin/raspiblitz/home.admin/BlitzPy -type f -exec md5sum {} \; | md5sum)
echo "# checkSumBlitzPyBefore = ${checkSumBlitzPyBefore}"
echo "# checkSumBlitzPyAfter = ${checkSumBlitzPyAfter}"
if [ "${checkSumBlitzPyBefore}" = "${checkSumBlitzPyAfter}" ]; then
if [ "${checkSumBlitzPyBefore}" = "${checkSumBlitzPyAfter}" ] && [ "$1" != "-install" ]; then
echo "# BlitzPy did not changed."
else
blitzpy_wheel=$(ls -trR /home/admin/raspiblitz/home.admin/BlitzPy/dist | grep -E "*any.whl" | tail -n 1)
@ -141,7 +141,7 @@ if [ "${touchscreen}" = "1" ]; then
checkSumBlitzTUIAfter=$(find /home/admin/raspiblitz/home.admin/BlitzTUI -type f -exec md5sum {} \; | md5sum)
echo "# checkSumBlitzTUIBefore = ${checkSumBlitzTUIBefore}"
echo "# checkSumBlitzTUIAfter = ${checkSumBlitzTUIAfter}"
if [ "${checkSumBlitzTUIBefore}" = "${checkSumBlitzTUIAfter}" ]; then
if [ "${checkSumBlitzTUIBefore}" = "${checkSumBlitzTUIAfter}" ] && [ "$1" != "-install" ]; then
echo "# BlitzTUI did not changed."
else
echo "# BlitzTUI changed --> UPDATING TOUCHSCREEN INSTALL ..."