daengine 0.4.7.2 → 0.4.7.3
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.
|
@@ -133,8 +133,9 @@ module Daengine::TeamsiteMetadataParser
|
|
|
133
133
|
#exclude manifest_file
|
|
134
134
|
unless doc['path'].match('\/manifest\/')
|
|
135
135
|
file = File.join(path, doc['path'])
|
|
136
|
-
if(!File.
|
|
136
|
+
if(!File.exist?(file))
|
|
137
137
|
# use just the filename
|
|
138
|
+
Daengine.log "Cant find file #{file}, trying with just the path and filename", "info"
|
|
138
139
|
file = File.join(path, doc['path'].split('/').last)
|
|
139
140
|
end
|
|
140
141
|
#exclude digital_asset_files that are not in *Teamsite Staging*
|
data/lib/daengine/version.rb
CHANGED