You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/scala/de/upb/cs/swt/delphi/cli/DelphiCLI.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,6 @@ object DelphiCLI extends App {
32
32
33
33
implicitvalsystem=ActorSystem()
34
34
35
-
36
35
valcliParser= {
37
36
new scopt.OptionParser[Config]("delphi-cli") {
38
37
head("Delphi Command Line Tool", s"(${BuildInfo.version})")
@@ -55,7 +54,8 @@ object DelphiCLI extends App {
55
54
.children(
56
55
arg[String]("id").action((x, c) => c.copy(id = x)).text("The ID of the project to retrieve"),
57
56
opt[Unit]('f', "file").action((_, c) => c.copy(opts =List("file"))).text("Use to load the ID from file, "+
58
-
"with the filepath given in place of the ID"), opt[String]("csv").action((x, c) => c.copy(csv = x)).text("Path to the output .csv file (overwrites existing file)")
57
+
"with the filepath given in place of the ID"),
58
+
opt[String]("csv").action((x, c) => c.copy(csv = x)).text("Path to the output .csv file (overwrites existing file)")
59
59
)
60
60
61
61
cmd("search").action((s, c) => c.copy(mode ="search"))
0 commit comments