canzea 0.1.118 → 0.1.119
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.
- checksums.yaml +4 -4
- data/lib/canzea/version.rb +1 -1
- data/lib/plan-step-class.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9b8c84880aa9c1049a2e39ee8656d4f17940333
|
4
|
+
data.tar.gz: 4026a4d57dc187a85c8a7708a919ae72982677bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8095022e853d879ef57f049aa5617ad5f17d2809c0741b299df11d67663901d0af9bb3507aaa024f0640747a7840038b83d4ba300ddf1269315d0ce71222bce
|
7
|
+
data.tar.gz: 3827e9f30211880e7fdae205ab515cb4e2a61497a3483b89ef947e22046d1fcb26ad8daf0b041eb20c0294d636e9c767a4fecbb777ac01e7882690dcc56d2110
|
data/lib/canzea/version.rb
CHANGED
data/lib/plan-step-class.rb
CHANGED
@@ -7,7 +7,7 @@ require 'prepare-environment'
|
|
7
7
|
|
8
8
|
class PlanStep
|
9
9
|
def initialize ()
|
10
|
-
@basePath = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}
|
10
|
+
@basePath = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}"
|
11
11
|
@log = Logger.new(Canzea::config[:logging_root] + '/plans.log')
|
12
12
|
end
|
13
13
|
|
@@ -157,7 +157,7 @@ class PlanStep
|
|
157
157
|
|
158
158
|
plan['plan'].each do |item|
|
159
159
|
|
160
|
-
root = "#{@basePath}/#{
|
160
|
+
root = "#{@basePath}/patches/#{item['role']}/#{item['solution']}"
|
161
161
|
if File.exist?(root) == false
|
162
162
|
log "-- WARNING #{root} does not exist"
|
163
163
|
else
|