henry-container 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/henry/container/version.rb +1 -1
- data/lib/henry/task/rake_task.rb +1 -1
- metadata +1 -1
data/lib/henry/task/rake_task.rb
CHANGED
@@ -28,7 +28,7 @@ module Henry
|
|
28
28
|
self.execution.log = self.logger.log_as_hash
|
29
29
|
rescue Exception => e
|
30
30
|
self.execution.code = 'ERROR'
|
31
|
-
self.execution.message = e.
|
31
|
+
self.execution.message = e.message
|
32
32
|
self.execution.output = File.open(self.out_path, 'r').read
|
33
33
|
self.execution.backtrace = e.backtrace
|
34
34
|
self.execution.log = self.logger.log_as_hash
|