From dc9c8daceff3721ebb28025e119b93d01cf22810 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 13 Sep 2024 11:17:14 -0500 Subject: [PATCH] update tasks --- config.nims | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/config.nims b/config.nims index ab1055d..f4b2700 100644 --- a/config.nims +++ b/config.nims @@ -1,8 +1,8 @@ import std/[strformat, strutils] -task debugTui, "debug tui": - exec "nim -d:debug c -r src/tui.nim" +task debugSelect, "debug select": + exec "nim -d:debug c -r src/selector.nim" task build, "build app": selfExec "c -o:bin/tsm src/tsm.nim" @@ -14,9 +14,6 @@ task release, "build release assets": version = (gorgeEx "git describe --tags --always --match 'v*'").output exec &"forge release -v {version} -V" -task updateNixLock, "regenerate nix/lock.json": - exec "nix run github:daylinmorgan/nnl nimble.lock > nix/lock.json" - task bundle, "package build assets": withDir "dist": for dir in listDirs("."): @@ -29,7 +26,6 @@ task bundle, "package build assets": exec cmd - # begin Nimble config (version 2) --noNimblePath when withDir(thisDir(), system.fileExists("nimble.paths")):