Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddentao committed Sep 8, 2016
1 parent b7a9412 commit b81a0ae
Show file tree
Hide file tree
Showing 47 changed files with 61 additions and 68 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ Once a Mist version is released the Meteor frontend part is bundled using `meteo

Requirements:

* Electron v1.2.5
* Electron v1.3.5
* Node v4.3.0 or above

To run mist in development you need [Node.js NPM](https://nodejs.org) and [Meteor](https://www.meteor.com/install) and electron installed:

$ curl https://install.meteor.com/ | sh
$ npm install -g electron-prebuilt@1.2.5
$ npm install -g electron-prebuilt@1.3.5
$ npm install -g gulp

And some futher tools to help with downloading and unzipping client nodes:
Expand Down
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ gulp.task('copy-app-source-files', ['checkNodes', 'clean:dist'], function() {

gulp.task('copy-app-folder-files', ['copy-app-source-files'], function(done) {
let ret = shell.exec(
`cp -r ${__dirname}/node_modules ${__dirname}/dist_${type}/app/node_modules`
`cp -a ${__dirname}/node_modules ${__dirname}/dist_${type}/app/node_modules`
);

if (0 !== ret.code) {
Expand Down Expand Up @@ -314,13 +314,13 @@ gulp.task('copy-node-folder-files', ['checkNodes', 'clean:dist'], function(done)
if (platformIsActive(osArch)) {
// copy eth node binaries
streams.push(gulp.src([
'./nodes/eth/'+ osArch + '/eth*'
'./nodes/eth/'+ osArch + '/*'
])
.pipe(gulp.dest('./dist_'+ type +'/app/nodes/eth/' + osArch)));

// copy geth node binaries
streams.push(gulp.src([
'./nodes/geth/'+ osArch + '/geth*'
'./nodes/geth/'+ osArch + '/*'
])
.pipe(gulp.dest('./dist_'+ type +'/app/nodes/geth/' + osArch)));
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
117 changes: 55 additions & 62 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"del": "^1.2.1",
"easy-zip": "0.0.4",
"electron-builder": "^5.23.2",
"electron-prebuilt": "^1.2.5",
"electron-prebuilt": "^1.3.5",
"genomatic": "^1.0.0",
"geth-private": "^1.3.0",
"gulp": "^3.9.0",
Expand Down

0 comments on commit b81a0ae

Please sign in to comment.