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

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga committed Sep 19, 2016
2 parents 4547ad7 + 83c0d14 commit c3ae760
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
5 changes: 1 addition & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,7 @@ gulp.task('switch-production', ['copy-files'], function(cb) {
gulp.task('bundling-interface', ['switch-production'], function(cb) {
if(type === 'mist') {
exec('cd interface && meteor-build-client ../dist_'+ type +'/app/interface -p ""', function (err, stdout, stderr) {
// console.log(stdout);
console.log(stderr);
console.log(stdout);

cb(err);
});
Expand All @@ -372,7 +371,6 @@ gulp.task('bundling-interface', ['switch-production'], function(cb) {
exec('cd interface/ && meteor-build-client ../dist_'+ type +'/app/interface/ -p "" &&'+
'cd ../../meteor-dapp-wallet/app && meteor-build-client ../../mist/dist_'+ type +'/app/interface/wallet -p ""', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);

cb(err);
});
Expand All @@ -382,7 +380,6 @@ gulp.task('bundling-interface', ['switch-production'], function(cb) {
exec('cd interface/ && meteor-build-client ../dist_'+ type +'/app/interface/ -p "" &&'+
'cd ../dist_'+ type +'/ && git clone --depth 1 https://github.com/ethereum/meteor-dapp-wallet.git && cd meteor-dapp-wallet/app && meteor-build-client ../../app/interface/wallet -p "" && cd ../../ && rm -rf meteor-dapp-wallet', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);

cb(err);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var lookupFunctionSignature = function(data, remoteLookup) {
: '0x'+ data.substr(0, 8);

if (remoteLookup) {
https.get('https://www.4byte.directory/api/v1/signatures/?hex_signature=' + bytesSignature, function(response){
https.get('https://www.4byte.directory/api/v1/signatures/?hex_signature=' + bytesSignature, function(response) {
var body = '';

response.on('data', function(chunk){
Expand Down
5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,5 @@
"shelljs": "^0.7.0",
"spectron": "^3.2.2",
"sync-request": "^3.0.1"
},
"engines": {
"node": ">4.3.0",
"electron": "1.0.1",
"atom-shell": "0.36.2"
}
}

0 comments on commit c3ae760

Please sign in to comment.