sixarma-bt 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- 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