six-updater 0.13.8 → 0.13.9

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.
Files changed (3) hide show
  1. data/Rakefile +1 -1
  2. data/lib/six/updater.rb +5 -4
  3. metadata +1 -1
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ require 'rake/testtask'
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.name = 'six-updater'
15
- s.version = '0.13.8'
15
+ s.version = '0.13.9'
16
16
  s.has_rdoc = true
17
17
  s.extra_rdoc_files = ['README', 'LICENSE']
18
18
  s.summary = 'Your summary here'
@@ -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.13.8'
47
+ VERSION = '0.13.9'
48
48
  COMPONENT = 'six-updater'
49
49
 
50
50
  # Configuration
@@ -75,7 +75,7 @@ module Six
75
75
  end
76
76
  TOOL_PATH = File.join(BASE_PATH, 'tools')
77
77
 
78
- DATA_PATH = BASE_PATH
78
+ dpath = BASE_PATH
79
79
  if defined?(TAR2RUBYSCRIPT)
80
80
  unless File.exists?(File.join(BASE_PATH, "legacy.txt"))
81
81
  reg_path = nil
@@ -85,15 +85,16 @@ module Six
85
85
  end
86
86
  if reg_path
87
87
  if reg_path.size > 0
88
- DATA_PATH = reg_path if File.directory?(reg_path)
88
+ dpath = File.join(reg_path, 'Six-Updater') if File.directory?(reg_path)
89
89
  end
90
90
  elsif ENV['APPDATA']
91
91
  if ENV['APPDATA'].size > 0
92
- DATA_PATH = File.join(ENV['APPDATA'], 'Six-Updater') if File.directory?(ENV['APPDATA'])
92
+ dpath = File.join(ENV['APPDATA'], 'Six-Updater') if File.directory?(ENV['APPDATA'])
93
93
  end
94
94
  end
95
95
  end
96
96
  end
97
+ DATA_PATH = dpath
97
98
 
98
99
  lf = File.join(DATA_PATH, "logs")
99
100
  FileUtils.mkdir_p(lf) unless File.directory?(lf)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: six-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.8
4
+ version: 0.13.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sickboy