We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f26ba29 commit 87e259fCopy full SHA for 87e259f
1 file changed
MerlinAU.sh
@@ -11122,9 +11122,8 @@ _Gnuton_Check_Webs_Update_Script_()
11122
return 1 #NOT available so do nothing#
11123
fi
11124
11125
- # Only (re)bind if remote is newer OR files differ #
11126
- if [ "$remoteVerstag" -gt "$localVerstag" ] || \
11127
- ! diff "$FW_UpdateCheckScript" "$fixedWebsUpdateFilePath" >/dev/null 2>&1
+ # Only (re)bind if remote is newer OR the currently bound file is missing the version tag #
+ if [ "$remoteVerstag" -gt "$localVerstag" ] || [ "$localVerstag" -eq 0 ]
11128
then
11129
umount "$FW_UpdateCheckScript" 2>/dev/null
11130
mount -o bind "$fixedWebsUpdateFilePath" "$FW_UpdateCheckScript"
0 commit comments