simplews 1.6.0 → 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rake_pipeline.rb +1 -3
- metadata +1 -1
data/lib/rake_pipeline.rb
CHANGED
@@ -63,7 +63,7 @@ module Rake::Pipeline
|
|
63
63
|
def parse_filename(filename)
|
64
64
|
filename.match(/^(.*?)([^\/]*)\/([^\/]*)$/)
|
65
65
|
{
|
66
|
-
:prefix => $1,
|
66
|
+
:prefix => $1 == "" ? "." : $1,
|
67
67
|
:step => $2,
|
68
68
|
:job => $3,
|
69
69
|
}
|
@@ -184,8 +184,6 @@ module Rake::Pipeline
|
|
184
184
|
else
|
185
185
|
# Add values to the info file
|
186
186
|
def info(values = {})
|
187
|
-
puts "Using rake info"
|
188
|
-
|
189
187
|
info = Rake::Pipeline::Info.load_info(@@current_task)
|
190
188
|
info = info.merge values
|
191
189
|
Rake::Pipeline::Info.save_info(@@current_task, info)
|