Skip to content

Commit b834950

Browse files
committed
Fix condition check error.
1 parent dfed128 commit b834950

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_ls_remote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dvm_test_error() {
55
exit 1
66
}
77

8-
if [ "$(uname -s)" = "Linux" ]
8+
if [ "$(uname -s)" != "Linux" ]
99
then
1010
# Just run this test case on Linux.
1111
exit 0

0 commit comments

Comments
 (0)