Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 6c81f9a

Browse files
committed
core: config.show config.replace
1 parent dbe8d7c commit 6c81f9a

File tree

25 files changed

+224
-109
lines changed

25 files changed

+224
-109
lines changed

src/cli/commands/add.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const Command = require('ronin').Command
55
module.exports = Command.extend({
66
desc: '',
77

8-
run: name => {}
8+
run: name => {
9+
}
910
})

src/cli/commands/bootstrap/list.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ module.exports = Command.extend({
1515
var node = new IPFS()
1616
node.bootstrap.list((err, list) => {
1717
if (err) { return log.error(err) }
18-
list.forEach(node => { console.log(node) })
18+
list.forEach(node => {
19+
console.log(node)
20+
})
1921
})
2022
}
2123
})

src/cli/commands/commands.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const Command = require('ronin').Command
55
module.exports = Command.extend({
66
desc: '',
77

8-
run: name => {}
8+
run: name => {
9+
}
910
})

src/cli/commands/dns.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const Command = require('ronin').Command
55
module.exports = Command.extend({
66
desc: '',
77

8-
run: name => {}
8+
run: name => {
9+
}
910
})

src/cli/commands/get.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ const Command = require('ronin').Command
33
module.exports = Command.extend({
44
desc: '',
55

6-
run: name => {}
6+
run: name => {
7+
}
78
})

src/cli/commands/init.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ module.exports = Command.extend({
2020
'empty-repo': {
2121
alias: 'e',
2222
type: 'boolean',
23-
desc: 'Don\'t add and pin help files to the local storage'
23+
desc: "Don't add and pin help files to the local storage"
2424
}
2525
},
2626

27-
run: name => {}
27+
run: name => {
28+
}
2829
})

src/cli/commands/ls.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const Command = require('ronin').Command
55
module.exports = Command.extend({
66
desc: '',
77

8-
run: name => {}
8+
run: name => {
9+
}
910
})

src/cli/commands/mount.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const Command = require('ronin').Command
55
module.exports = Command.extend({
66
desc: '',
77

8-
run: name => {}
8+
run: name => {
9+
}
910
})

src/cli/commands/ping.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const Command = require('ronin').Command
55
module.exports = Command.extend({
66
desc: '',
77

8-
run: name => {}
8+
run: name => {
9+
}
910
})

src/cli/commands/refs.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const Command = require('ronin').Command
55
module.exports = Command.extend({
66
desc: '',
77

8-
run: name => {}
8+
run: name => {
9+
}
910
})

0 commit comments

Comments
 (0)