mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
Merge branch 'master' of github.com:rlidwka/sinopia
This commit is contained in:
commit
6234f8cba9
3 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
26 Dec 2013, version 0.5.9
|
||||||
|
|
||||||
|
- fixing bug with bad Accept header (issue #32)
|
||||||
|
|
||||||
20 Dec 2013, version 0.5.8
|
20 Dec 2013, version 0.5.8
|
||||||
|
|
||||||
- fixed a warning from js-yaml
|
- fixed a warning from js-yaml
|
||||||
|
|
|
@ -319,6 +319,9 @@ Storage.prototype.get_url = function(url) {
|
||||||
var rstream = this.request({
|
var rstream = this.request({
|
||||||
uri_full: url,
|
uri_full: url,
|
||||||
encoding: null,
|
encoding: null,
|
||||||
|
headers: {
|
||||||
|
Accept: 'application/octet-stream',
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
rstream.on('response', function(res) {
|
rstream.on('response', function(res) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# use "yapm install ." if you're installing this from git repository
|
# use "yapm install ." if you're installing this from git repository
|
||||||
|
|
||||||
name: sinopia
|
name: sinopia
|
||||||
version: 0.5.8
|
version: 0.5.9
|
||||||
description: Private npm repository server
|
description: Private npm repository server
|
||||||
|
|
||||||
author:
|
author:
|
||||||
|
|
Loading…
Reference in a new issue