forked from exercism/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd.go
35 lines (22 loc) · 826 Bytes
/
cmd.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cmd
const msgWelcomePleaseConfigure = `
Welcome to Exercism!
To get started, you need to configure the tool with your API token.
Find your token at
%s
Then run the configure command:
%s configure --token=YOUR_TOKEN
`
// Running configure without any arguments will attempt to
// set the default workspace. If the default workspace directory
// risks clobbering an existing directory, it will print an
// error message that explains how to proceed.
const msgRerunConfigure = `
Please re-run the configure command to define where
to download the exercises.
%s configure
`
const msgMissingMetadata = `
The exercise you are submitting doesn't have the necessary metadata.
Please see https://exercism.io/cli-v1-to-v2 for instructions on how to fix it.
`