mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-03 17:38:16 +02:00
optional forcing installs
This commit is contained in:
parent
9b6b7423fe
commit
b7164f71a0
@ -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 ..."
|
||||
|
Loading…
x
Reference in New Issue
Block a user