canzea 0.1.76 → 0.1.77
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/commands/prepare-plan.rb +1 -1
- data/lib/trace-component.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: 53db21fc7e2e067b77e0e0152dd50bac46da31c5
|
4
|
+
data.tar.gz: 6db64ea2d7728041603679af3f9c6c40f91d06a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 418738b2d69bca8b594a76ef893096f01a9831353c3274a483068ffa69a68b21649de3ef112f16fb9a2732c1a7b4522d79c3f139b55744ffda38e37700226192
|
7
|
+
data.tar.gz: bd2651d09a5ccb177d6a71995df6baf827053b0410734a34754026e23bd6abda4edc28cb1d9ae8e0bc305488703f23859fdb1ae70ff55f4e3f1272e991d9a1dc
|
data/lib/canzea/version.rb
CHANGED
@@ -7,7 +7,7 @@ require 'canzea/config'
|
|
7
7
|
class PreparePlan
|
8
8
|
def initialize ()
|
9
9
|
@log = Logger.new(Canzea::config[:logging_root] + '/plans.log')
|
10
|
-
@basePath = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}
|
10
|
+
@basePath = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}"
|
11
11
|
end
|
12
12
|
|
13
13
|
# Read the blueprint instructions and prepare plan for a particular segment
|
data/lib/trace-component.rb
CHANGED
@@ -46,7 +46,7 @@ class Worker
|
|
46
46
|
elsif ( l.chomp.end_with?(".sh") && !l.chomp.end_with?(".atomic.sh") && !l.include?("cp ") && !l.include?("chmod") )
|
47
47
|
@log.info(" [#{ref}] RECURSE: " + l)
|
48
48
|
|
49
|
-
workingDir = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}
|
49
|
+
workingDir = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}"
|
50
50
|
|
51
51
|
Dir.chdir(workingDir){
|
52
52
|
|
@@ -71,7 +71,7 @@ class Worker
|
|
71
71
|
t1 = Time.now
|
72
72
|
|
73
73
|
begin
|
74
|
-
workingDir = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}
|
74
|
+
workingDir = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}"
|
75
75
|
|
76
76
|
puts "-- Executing [#{workingDir}] #{l}"
|
77
77
|
Dir.chdir(workingDir){
|