Skip to content

Commit

Permalink
Properly XOR stuff in the Rakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Jun 23, 2010
1 parent 6478ab8 commit b4cb2bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -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}))")
Expand Down

0 comments on commit b4cb2bf

Please sign in to comment.