sixarma-bt 0.7.3 → 0.7.4
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/sixarma/bt/sign.rb +2 -0
- data/lib/sixarma/bt.rb +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -13,7 +13,7 @@ require 'rake/testtask'
|
|
|
13
13
|
spec = Gem::Specification.new do |s|
|
|
14
14
|
s.name = 'sixarma-bt'
|
|
15
15
|
s.rubyforge_project = s.name
|
|
16
|
-
s.version = '0.7.
|
|
16
|
+
s.version = '0.7.4'
|
|
17
17
|
s.has_rdoc = true
|
|
18
18
|
s.extra_rdoc_files = ['README', 'LICENSE']
|
|
19
19
|
s.summary = 'BuildTools for full conversion Mods for Armed Assault'
|
data/lib/sixarma/bt/sign.rb
CHANGED
|
@@ -34,6 +34,8 @@ module SixArma
|
|
|
34
34
|
|
|
35
35
|
case @config.sign.keytype
|
|
36
36
|
when 'whole'
|
|
37
|
+
SixCore::filedel("#{@config.outroot}\\files\\update\\Keys\\#{@config.sign.file}_*.bikey")
|
|
38
|
+
SixCore::filedel("#{@config.outroot}\\files\\full\\Keys\\#{@config.sign.file}_*.bikey")
|
|
37
39
|
signfiles = sign_create('full')
|
|
38
40
|
signfiles = sign_create('update') # TODO - Lame, function copies instead of create new one, but still - need to move
|
|
39
41
|
|
data/lib/sixarma/bt.rb
CHANGED