rconf 0.8.4 → 0.8.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rconf/configurator.rb +1 -1
- data/lib/rconf/version.rb +1 -1
- metadata +1 -1
data/lib/rconf/configurator.rb
CHANGED
@@ -132,7 +132,7 @@ module RightConf
|
|
132
132
|
sha = Profile.configurator_signature(key)
|
133
133
|
sig = signature
|
134
134
|
if Profile.force_reconfigure? ||
|
135
|
-
(Profile.force_check? || sha != sig && (only_if.nil? || instance_eval(only_if))
|
135
|
+
(Profile.force_check? || sha != sig && (only_if.nil? || instance_eval(only_if)) && !check)
|
136
136
|
Platform.dispatch(*args) { :run }
|
137
137
|
Profile.set_configurator_signature(key, sig)
|
138
138
|
end
|
data/lib/rconf/version.rb
CHANGED