@@ -155,14 +155,14 @@ func runConfigure(configuration config.Configuration, flags *pflag.FlagSet) erro
155155 if info , err := os .Lstat (workspace ); ! os .IsNotExist (err ) && ! info .IsDir () {
156156 msg := `
157157
158- There is already something at the workspace location you are configuring:
158+ There is already something at the workspace location you are configuring:
159159
160- %s
160+ %s
161161
162- Please rename it, or set a different workspace location:
162+ Please rename it, or set a different workspace location:
163163
164- %s configure %s --workspace=PATH_TO_DIFFERENT_FOLDER
165- `
164+ %s configure %s --workspace=PATH_TO_DIFFERENT_FOLDER
165+ `
166166
167167 return fmt .Errorf (msg , workspace , BinaryName , commandify (flags ))
168168 }
@@ -174,18 +174,20 @@ func runConfigure(configuration config.Configuration, flags *pflag.FlagSet) erro
174174 // If it already exists don't clobber it with the default.
175175 if _ , err := os .Lstat (workspace ); ! os .IsNotExist (err ) {
176176 msg := `
177- The default Exercism workspace is
177+ The default Exercism workspace is
178178
179- %s
179+ %s
180180
181- There is already something there.
182- If it's a directory, that might be fine. If it's a file, you will need to move it first,
183- or choose a different location for the workspace.
181+ There is already something there.
182+ If it's a directory, that might be fine.
183+ If it's a file, you will need to move it first, or choose a
184+ different location for the workspace.
184185
185- You can choose the workspace location by rerunning this command with the --workspace flag.
186+ You can choose the workspace location by rerunning this command
187+ with the --workspace flag.
186188
187- %s configure %s --workspace=%s
188- `
189+ %s configure %s --workspace=%s
190+ `
189191
190192 return fmt .Errorf (msg , workspace , BinaryName , commandify (flags ), workspace )
191193 }
0 commit comments