Skip to content

Commit

Permalink
Merge pull request #11 from ipfs/relative-bin-paths
Browse files Browse the repository at this point in the history
use relative binary paths, document package command
  • Loading branch information
jbenet committed Jun 21, 2015
2 parents eb520fe + 8cf91ad commit e67577f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,20 @@ Electron Shell based ipfs app

```bash
npm run start
```

# packaging

will be written to ./pkg

## make a package for your system

```bash
npm run package
```

## make packages for all platforms

```bash
npm run package-all
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron index.js 2>&1 | silence-chromium",
"start": "node_modules/.bin/electron index.js 2>&1 | node_modules/.bin/silence-chromium",
"lint": "git diff --name-only --cached --relative | egrep .js$ | xargs --no-run-if-empty standard",
"package": "node pkg.js",
"package-all": "node pkg.js --all"
Expand Down

0 comments on commit e67577f

Please sign in to comment.