Skip to content

Commit be14e01

Browse files
fix flase condition
1 parent 06638e5 commit be14e01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

udroid/src/udroid.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ verify_integrity() {
114114
LOG "filesum=$filesha"
115115
LOG "shasum=$shasum"
116116

117-
if [[ "$filesha" == "$shasum" ]]; then
117+
if [[ "$filesha" != "$shasum" ]]; then
118118
LOG "file integrity check failed"
119119
return 1
120120
else

0 commit comments

Comments
 (0)