Skip to content

Commit d57f49e

Browse files
dkwomarcan
authored andcommitted
update-vendor-firmware: replace == with =
Signed-off-by: dkwo <[email protected]>
1 parent 6d5d973 commit d57f49e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

update-vendor-firmware

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ cd "$TARGET_ROOT/$TARGET"
4949
if [ -e "$TARGET_MANIFEST" ]; then
5050
h_cur=$(sha1sum "$TARGET_MANIFEST" | cut -d" " -f1)
5151
h_new=$(sha1sum "$VENDORFW/manifest.txt" | cut -d" " -f1)
52-
if [ "$h_cur" == "$h_new" ]; then
52+
if [ "$h_cur" = "$h_new" ]; then
5353
echo "Vendor firmware is up to date, nothing to do."
5454
$umount && umount /run/.system-efi
5555
exit 0

0 commit comments

Comments
 (0)