Update command to run locally in website README.

This commit is contained in:
Brandon Liu 2013-07-02 10:47:44 -07:00 committed by Mitchell Hashimoto
parent 39d3ae85f6
commit c266f8a067
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ commands:
```
$ bundle
$ bundle exec middleman server
$ PACKER_DISABLE_DOWNLOAD_FETCH=true PACKER_VERSION=1.0 bundle exec middleman server
```
Then open up `localhost:4567`. Note that some URLs you may need to append

View File

@ -1,6 +1,5 @@
require "net/http"
raise "BINTRAY_API_KEY must be set." if !ENV["BINTRAY_API_KEY"]
raise "PACKER_VERSION must be set." if !ENV["PACKER_VERSION"]
#-------------------------------------------------------------------------
@ -11,6 +10,7 @@ $packer_files = {}
$packer_os = []
if !ENV["PACKER_DISABLE_DOWNLOAD_FETCH"]
raise "BINTRAY_API_KEY must be set." if !ENV["BINTRAY_API_KEY"]
http = Net::HTTP.new("dl.bintray.com", 80)
req = Net::HTTP::Get.new("/mitchellh/packer")
req.basic_auth "mitchellh", ENV["BINTRAY_API_KEY"]