diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-03-09 11:54:12 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-03-09 11:54:12 +0000 |
commit | 303c9e43f2286fc40024f6a2070bf497d0967e95 (patch) | |
tree | bf6a11780e94f8b49585ebe2d7cd4c0334ecdbc3 | |
parent | 4a4ec2394b5871f9d64450da51820392767c10d7 (diff) |
fix operator precedence bug
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ # Work around bug in Debian Squeeze - see https://github.com/sebbacon/alaveteli/pull/297#issuecomment-4101012 -if File.exist? "/etc/debian_version" && File.open("/etc/debian_version").read.strip == "6.0.4" +if File.exist? "/etc/debian_version" and File.open("/etc/debian_version").read.strip == "6.0.4" if File.exist? "/lib/libuuid.so.1" require 'dl' DL::dlopen('/lib/libuuid.so.1') |