mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
Properly XOR stuff in the Rakefile.
This commit is contained in:
parent
6478ab823e
commit
b4cb2bfe80
1 changed files with 1 additions and 1 deletions
2
Rakefile
2
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}))")
|
||||
|
|
Loading…
Reference in a new issue