Consul does not have prefixed packages (yet)

This commit is contained in:
Seth Vargo 2014-10-06 20:31:57 -04:00
parent 40e8bfb54b
commit eacb324188
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
GIT GIT
remote: git://github.com/hashicorp/middleman-hashicorp.git remote: git://github.com/hashicorp/middleman-hashicorp.git
revision: 123a860d461b9e17cfefb8211ef64ec27f7bdc47 revision: fe7d5bb4b04c408857dbe94345341cafcbc02de4
specs: specs:
middleman-hashicorp (0.1.0) middleman-hashicorp (0.1.0)
bootstrap-sass (~> 3.2) bootstrap-sass (~> 3.2)

View File

@ -8,9 +8,14 @@ activate :hashicorp do |h|
h.bintray_user = 'mitchellh' h.bintray_user = 'mitchellh'
h.bintray_key = ENV['BINTRAY_API_KEY'] h.bintray_key = ENV['BINTRAY_API_KEY']
# Do not include the "web" in the default list of packages
h.bintray_exclude_proc = Proc.new do |os, filename| h.bintray_exclude_proc = Proc.new do |os, filename|
os == 'web' os == 'web'
end end
# Consul packages are not prefixed with consul_ - they should be in the
# future though!
h.bintray_prefixed = false
end end
helpers do helpers do