Skip to content

Commit

Permalink
Fixed the missing `]' error message (#3966)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti0ma authored and uglide committed Jan 26, 2018
1 parent da0f6e9 commit 5583f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configure
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if [ "$os_VENDOR" == "Ubuntu" ] || [ "$os_VENDOR" == "LinuxMint" ]; then
ubuntu_ver=${os_RELEASE:0:2}
print_title "Build RDM on $os_VENDOR: $ubuntu_ver"

if [ "$os_VENDOR" == "Ubuntu" && "$ubuntu_ver" == "12" ]; then
if [ "$os_VENDOR" == "Ubuntu" ] && [ "$ubuntu_ver" == "12" ]; then
echo "RedisDesktopManager doesn't support Ubuntu 12 since 0.8.8 release."
exit 1
fi
Expand Down

0 comments on commit 5583f1a

Please sign in to comment.