From b4cb2bfe8054dfa5f9f965a078fa3fcee2c39edf Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Wed, 23 Jun 2010 14:30:01 -0700 Subject: [PATCH] Properly XOR stuff in the Rakefile. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 6f3753b2..871bc69f 100644 --- a/Rakefile +++ b/Rakefile @@ -97,7 +97,7 @@ task :release_elpa do haml_unchanged = mode_unchanged?(:haml, version) sass_unchanged = mode_unchanged?(:sass, version) next if haml_unchanged && sass_unchanged - raise "haml-mode.el and sass-mode.el are out of sync." if haml_unchanged ^ sass_unchanged + raise "haml-mode.el and sass-mode.el are out of sync." if (!!haml_unchanged) ^ (!!sass_unchanged) if sass_unchanged && File.read(scope("extra/sass-mode.el")). include?(";; Package-Requires: ((haml-mode #{sass_unchanged.inspect}))")