six-updater 0.12.4 → 0.12.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/lib/six/updater.rb +3 -3
- metadata +1 -1
data/Rakefile
CHANGED
data/lib/six/updater.rb
CHANGED
@@ -44,7 +44,7 @@ end
|
|
44
44
|
module Six
|
45
45
|
# TODO: Evaluate if this module should be a class instead?
|
46
46
|
module Updater
|
47
|
-
VERSION = '0.12.
|
47
|
+
VERSION = '0.12.5'
|
48
48
|
COMPONENT = 'six-updater'
|
49
49
|
|
50
50
|
# Configuration
|
@@ -279,16 +279,16 @@ module Six
|
|
279
279
|
|
280
280
|
@beta = false
|
281
281
|
@beta_exe = false
|
282
|
-
@beta_exe = true if @config[:app_exe][/beta
|
282
|
+
@beta_exe = true if @config[:app_exe][/beta[\/|\\]arma2.*\.exe/]
|
283
283
|
|
284
284
|
@config[:folders].each do |folder|
|
285
|
+
@beta = true if folder[:folder] == 'beta'
|
285
286
|
unless folder[:disabled]
|
286
287
|
folder[:folder].gsub!('\\', '/')
|
287
288
|
if folder[:mods]
|
288
289
|
@mods << folder[:mods]
|
289
290
|
else
|
290
291
|
@mods << folder[:folder]
|
291
|
-
@beta = true if folder[:folder] == 'beta'
|
292
292
|
end
|
293
293
|
end
|
294
294
|
end
|