We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7489c94 commit 40c12a6Copy full SHA for 40c12a6
src/core/commands/proxy.js
@@ -32,6 +32,10 @@ module.exports = async (options) => {
32
33
cleanUpOps.push(() => {
34
return new Promise((resolve) => {
35
+ if (options.ipfs.node !== 'proc') {
36
+ return resolve()
37
+ }
38
+
39
ipfs.stop(() => {
40
console.info('👿 IPFS node stopped') // eslint-disable-line no-console
41
resolve()
src/core/commands/update.js
@@ -26,6 +26,10 @@ module.exports = async (options) => {
26
27
28
29
30
31
0 commit comments