Skip to content

Commit

Permalink
Merge pull request #216 from genome-vendor/master
Browse files Browse the repository at this point in the history
Remove the quotes from the "origin" line.
  • Loading branch information
hunner committed Feb 25, 2014
2 parents cb53175 + d28dc49 commit 7875745
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/defines/pin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
:priority => '1',
:origin => 'ftp.de.debian.org'
},
:content => "# my_pin\nExplanation: : my_pin\nPackage: *\nPin: origin \"ftp.de.debian.org\"\nPin-Priority: 1\n"
:content => "# my_pin\nExplanation: : my_pin\nPackage: *\nPin: origin ftp.de.debian.org\nPin-Priority: 1\n"
},
{
:params => {
Expand Down
2 changes: 1 addition & 1 deletion templates/pin.pref.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if @pin_release.length > 0
elsif @version.length > 0
@pin = "version #{@version}"
elsif @origin.length > 0
@pin = "origin \"#{@origin}\""
@pin = "origin #{@origin}"
end
-%>
# <%= @name %>
Expand Down

0 comments on commit 7875745

Please sign in to comment.