File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/cli/src/main/scala/scala/cli/commands/publish Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -263,13 +263,13 @@ object PublishSetup extends ScalaCommand[PublishSetupOptions] {
263263 def extraDirectivesLines (extraDirectives : Seq [(String , String )]) =
264264 extraDirectives.map {
265265 case (k, v) =>
266- s """ //> using $k " $v " """ + nl
266+ s """ //> using $k $v """ + nl
267267 }.mkString
268268
269269 val extraLines = missingFieldsWithDefaultsAndValues.map {
270270 case (_, default, None ) => extraDirectivesLines(default.extraDirectives)
271271 case (check, default, Some (value)) =>
272- s """ //> using ${check.directivePath} " $value" """ + nl +
272+ s """ //> using ${check.directivePath} $value""" + nl +
273273 extraDirectivesLines(default.extraDirectives)
274274 }
275275
You can’t perform that action at this time.
0 commit comments