-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added ipfs to crx packaging files #21
Conversation
❤️ this was on my list soon to post an issue for |
@emerick can you own this, I think we'll need to have our own keys that we manage in the same way though |
Sure thing! |
@emerick let me know if there is any help I can provide! |
@@ -30,6 +30,7 @@ | |||
"package-https-everywhere": "node ./scripts/packageComponent --type https-everywhere-updater", | |||
"package-themes": "node ./scripts/packageThemes", | |||
"package-tor-client": "node ./scripts/packageTorClient", | |||
"package-ipfs-daemon": "node ./scripts/packageIpfsDaemon", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are missing upload
one :)
mkdirp.sync(ipfsPath) | ||
const ipfsDaemon = path.join(ipfsPath, ipfsFilename) | ||
// Build decompression command based on system | ||
const decompressUnix = ' | tar xf - -C ' + ipfsPath + ' && cp ' + ipfsPath + '/go-ipfs/ipfs ' + ipfsDaemon |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this work without z
?
On Linux I had to use tar xzf - -C
to make it work.
Carried over to #23 |
Adding files to package go-ipfs as a brave-core-crx, similar to the Tor crx implementation
What is needed to manage the IPFS binary from the brave-core C++ side?
I see a PR here that seems to have those controls for Tor brave/brave-core@ed7c0ab
@lidel @emerick @bsclifton @darkdh