From 9a963fde30d7dfb92fbfa5e7dbcb4981ff28f58d Mon Sep 17 00:00:00 2001 From: joeyak <27922090+joeyak@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:03:25 -0500 Subject: [PATCH] Fix added newline in merge conflict resolution --- runner/config.go | 1 - 1 file changed, 1 deletion(-) diff --git a/runner/config.go b/runner/config.go index ccbacad3..6533a7e8 100644 --- a/runner/config.go +++ b/runner/config.go @@ -35,7 +35,6 @@ type Config struct { } type cfgBuild struct { - PreCmd []string `toml:"pre_cmd" usage:"Array of commands to run before each build"` Cmd string `toml:"cmd" usage:"Just plain old shell command. You could use 'make' as well"` PostCmd []string `toml:"post_cmd" usage:"Array of commands to run after ^C"`