aboutsummaryrefslogtreecommitdiffstats
path: root/golings/cmd/run.go
diff options
context:
space:
mode:
Diffstat (limited to 'golings/cmd/run.go')
-rw-r--r--golings/cmd/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/golings/cmd/run.go b/golings/cmd/run.go
index ad61793..752bb44 100644
--- a/golings/cmd/run.go
+++ b/golings/cmd/run.go
@@ -17,7 +17,7 @@ var cmdRun = &cobra.Command{
Short: "Run a single exercise",
Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs),
Run: func(cmd *cobra.Command, args []string) {
- result, err := exercises.Run(args[0])
+ result, err := exercises.Run(args[0], "info.toml")
if err != nil {
color.Cyan("Failed to compile the exercise %s\n\n", result.Exercise.Path)
color.White("Check the output below: \n\n")