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

Commit e20c9de

Browse files
committed
alias 'ipfs files ls' to 'ipfs ls'
1 parent dd202fc commit e20c9de

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/cli/commands/files.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict'
22

33
const print = require('../utils').print
4+
const lsCmd = require('./ls')
45

56
module.exports = {
67
command: 'files <command>',
@@ -10,6 +11,7 @@ module.exports = {
1011
builder (yargs) {
1112
return yargs
1213
.commandDir('files')
14+
.command(lsCmd)
1315
},
1416

1517
handler (argv) {

0 commit comments

Comments
 (0)