Skip to content

Commit

Permalink
My distro (ubuntu) was not copying files over correctly on install.
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGrandon committed Feb 11, 2012
1 parent b8e309a commit c5cbc0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bin/matador.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var methods = {
init: function (path) {
console.log('installing Matador into ' + path)
fs.mkdirSync('./' + path)
exec('cp -R ' + __dirname + '/../src/all/ ' + path, function (err, out) {
exec('cp -R ' + __dirname + '/../src/all/* ' + path + '/.', function (err, out) {
if (err) return console.log('error', err)
console.log('Success!')
})
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./src/matador');

0 comments on commit c5cbc0b

Please sign in to comment.