diff --git a/.gitignore b/.gitignore index 6ea289bee..88ddd7288 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ sinopia-*.tgz .DS_Store ### -bin/** !bin/sinopia test-storage* diff --git a/bin/verdaccio b/bin/verdaccio new file mode 100644 index 000000000..87170d755 --- /dev/null +++ b/bin/verdaccio @@ -0,0 +1,3 @@ +#!/usr/bin/env node + +require('../lib/cli') diff --git a/test/functional/scoped.js b/test/functional/scoped.js index 06b40e102..f25f16260 100644 --- a/test/functional/scoped.js +++ b/test/functional/scoped.js @@ -40,11 +40,6 @@ module.exports = function() { .status(200) .then(function (body) { // not real sha due to utf8 conversion - require('fs').writeFileSync( - '/Users/trent.earl/what.tgz', - body - ); - assert.strictEqual(sha(body), '6e67b14e2c0e450b942e2bc8086b49e90f594790') }) })