Skip to content

Commit 5583f1a

Browse files
ti0mauglide
authored andcommitted
Fixed the missing `]' error message (#3966)
1 parent da0f6e9 commit 5583f1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if [ "$os_VENDOR" == "Ubuntu" ] || [ "$os_VENDOR" == "LinuxMint" ]; then
3333
ubuntu_ver=${os_RELEASE:0:2}
3434
print_title "Build RDM on $os_VENDOR: $ubuntu_ver"
3535

36-
if [ "$os_VENDOR" == "Ubuntu" && "$ubuntu_ver" == "12" ]; then
36+
if [ "$os_VENDOR" == "Ubuntu" ] && [ "$ubuntu_ver" == "12" ]; then
3737
echo "RedisDesktopManager doesn't support Ubuntu 12 since 0.8.8 release."
3838
exit 1
3939
fi

0 commit comments

Comments
 (0)