@cryptotaxi247 / kubo / commits / f9e9f2854

Fix a typo

Devin committed Jun 5, 2019 at 22:14 UTC f9e9f2854b98eb8397360372b997690a79e5b60d
3 files changed +4 -4
go.mod
+1 -1
@@ -32,7 +32,7 @@ require (
32 github.com/ipfs/go-ipfs-blockstore v0.0.1
33 github.com/ipfs/go-ipfs-blocksutil v0.0.1
34 github.com/ipfs/go-ipfs-chunker v0.0.1
35 - github.com/ipfs/go-ipfs-cmds v0.0.8
35 + github.com/ipfs/go-ipfs-cmds v0.0.10
36 github.com/ipfs/go-ipfs-config v0.0.6
37 github.com/ipfs/go-ipfs-ds-help v0.0.1
38 github.com/ipfs/go-ipfs-exchange-interface v0.0.1
go.sum
+2 -2
@@ -230,8 +230,8 @@ github.com/ipfs/go-ipfs-blocksutil v0.0.1 h1:Eh/H4pc1hsvhzsQoMEP3Bke/aW5P5rVM1IW
230 github.com/ipfs/go-ipfs-blocksutil v0.0.1/go.mod h1:Yq4M86uIOmxmGPUHv/uI7uKqZNtLb449gwKqXjIsnRk=
231 github.com/ipfs/go-ipfs-chunker v0.0.1 h1:cHUUxKFQ99pozdahi+uSC/3Y6HeRpi9oTeUHbE27SEw=
232 github.com/ipfs/go-ipfs-chunker v0.0.1/go.mod h1:tWewYK0we3+rMbOh7pPFGDyypCtvGcBFymgY4rSDLAw=
233 -github.com/ipfs/go-ipfs-cmds v0.0.8 h1:ZMo0ZeQOr10ZKY4yxYA3lRHUbnF/ZYcV9cpU0IrlGFI=
234 -github.com/ipfs/go-ipfs-cmds v0.0.8/go.mod h1:TiK4e7/V31tuEb8YWDF8lN3qrnDH+BS7ZqWIeYJlAs8=
233 +github.com/ipfs/go-ipfs-cmds v0.0.10 h1:4kA3E94HbDrLb4RZTkX3yXyUjKv50RfPz0Pv9xkP2cA=
234 +github.com/ipfs/go-ipfs-cmds v0.0.10/go.mod h1:TiK4e7/V31tuEb8YWDF8lN3qrnDH+BS7ZqWIeYJlAs8=
235 github.com/ipfs/go-ipfs-config v0.0.5 h1:D9ek19anOzm8iYPvezeeamSg5mzwqKPb2jyAyJZT/4A=
236 github.com/ipfs/go-ipfs-config v0.0.5/go.mod h1:IGkVTacurWv9WFKc7IBPjHGM/7hi6+PEClqUb/l2BIM=
237 github.com/ipfs/go-ipfs-config v0.0.6 h1:jzK9Tl8S0oWBir3F5ObtGgnHRPdqQ0MYiCmwXtV3Ps4=
test/sharness/t0062-daemon-api.sh
+1 -1
@@ -32,7 +32,7 @@ test_client_must_fail() {
32 opts="$@"
33 echo "OPTS = " $opts
34 test_expect_success "client should fail $state" '
35 - echo "Error: cannot connect to the api. Is the deamon running? To run as a standalone CLI command remove the api file in \`\$IPFS_PATH/api\`" >expected_err &&
35 + echo "Error: cannot connect to the api. Is the daemon running? To run as a standalone CLI command remove the api file in \`\$IPFS_PATH/api\`" >expected_err &&
36 test_must_fail ipfs id -f="<id>" $opts >actual 2>actual_err &&
37 test_cmp expected_err actual_err
38 '