added testscript test to test the combination of all tasks

This commit is contained in:
2025-01-14 12:22:35 +01:00
committed by T.v.Dein
parent 6ca835add1
commit 0e68dc585d
13 changed files with 247 additions and 7 deletions

10
main.go
View File

@@ -18,9 +18,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"os"
"github.com/tlinden/tablizer/cmd"
)
func main() {
cmd.Execute()
os.Exit(Main())
}
func Main() int {
cmd.Execute()
return 0 // cmd takes care of exit 1 itself
}