Skip to content

Commit

Permalink
Use backslash string line continuation syntax vs. concatenation (style).
Browse files Browse the repository at this point in the history
  • Loading branch information
fnichol committed Aug 5, 2014
1 parent 1a79977 commit ee0b8f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/emeril/git_tagger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def perform_git_push(options = '')
out, code = sh_with_code(cmd)
if code != 0
raise GitPushError,
"Couldn't git push. `#{cmd}' failed with the following output:" +
"Couldn't git push. `#{cmd}' failed with the following output:" \
"\n\n#{out}\n"
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/emeril/rake_tasks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def initialize
def define
metadata = Emeril::MetadataChopper.new("metadata.rb")

desc "Create git tag for #{metadata[:name]}-#{metadata[:version]}" +
desc "Create git tag for #{metadata[:name]}-#{metadata[:version]}" \
" and push to the Community Site"
task "release" do
Chef::Knife.new.configure_chef
Expand Down

0 comments on commit ee0b8f6

Please sign in to comment.