Commit a31b256e authored by Jeromy Johnson's avatar Jeromy Johnson Committed by GitHub

Merge pull request #3591 from ipfs/kevina/weird-trailing-message

Fix weird trailing message in default os check.
parents f8ba7c0f 499cdfd7
......@@ -593,10 +593,9 @@ func profileIfEnabled() (func(), error) {
var apiFileErrorFmt string = `Failed to parse '%[1]s/api' file.
error: %[2]s
If you're sure go-ipfs isn't running, you can just delete it.
Otherwise check:
`
var checkIPFSUnixFmt = "\tps aux | grep ipfs"
var checkIPFSWinFmt = "\ttasklist | findstr ipfs"
var checkIPFSUnixFmt = "Otherwise check:\n\tps aux | grep ipfs"
var checkIPFSWinFmt = "Otherwise check:\n\ttasklist | findstr ipfs"
// getApiClient checks the repo, and the given options, checking for
// a running API service. if there is one, it returns a client.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment