Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.

Commit

Permalink
slugrunner: Use string literals when constructing config_vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Monroy committed Dec 5, 2013
1 parent 72416ee commit 7b4b9d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/init
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd $HOME

mkdir -p .profile.d
if [[ -f .release ]]; then
ruby -e "require 'yaml';(YAML.load_file('.release')['config_vars'] || {}).each{|k,v| puts \"#{k}=#{v}\"}" > .profile.d/config_vars
ruby -e "require 'yaml';(YAML.load_file('.release')['config_vars'] || {}).each{|k,v| puts \"#{k}='#{v}'\"}" > .profile.d/config_vars
fi
for file in .profile.d/*; do
source $file
Expand Down

0 comments on commit 7b4b9d4

Please sign in to comment.