summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/models/build.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/build.rb b/app/models/build.rb
index 133de8e..4f6bf32 100644
--- a/app/models/build.rb
+++ b/app/models/build.rb
@@ -251,7 +251,7 @@ class Build < ActiveRecord::Base
def yaml_variables
if commit.config_processor
commit.config_processor.variables.map do |key, value|
- {key: key, value: value, public: true}
+ { key: key, value: value, public: true }
end
else
[]
@@ -260,7 +260,7 @@ class Build < ActiveRecord::Base
def project_variables
project.variables.map do |variable|
- {key: variable.key, value: variable.value, public: false}
+ { key: variable.key, value: variable.value, public: false }
end
end
end