Remove the quotes from the origin line. This doesn't matter on Ubuntu Precise with apt 0.8, but for those of us still using Ubuntu Lucid, apt 0.7 silently ignores preferences with the quotes.
This commit is contained in:
parent
9b16583964
commit
3922a1bdf5
1 changed files with 1 additions and 1 deletions
|
@ -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 %>
|
||||
|
|
Loading…
Reference in a new issue