summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-09 10:30:25 -0600
committerJeff Carr <[email protected]>2024-02-09 10:30:25 -0600
commitaf3c55b5a1cf424c88730164d2b94f935f1bdcc7 (patch)
tree1011a2ef8b29e396128dfcd3175b4dc85276d643
parent40856345785aff5d95b05ab2d70955529916aff2 (diff)
minor
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0d2411f..c0c1012 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,10 @@ redomod:
GO111MODULE= go mod init
GO111MODULE= go mod tidy
+reset:
+ # clear your terminal
+ reset
+
stderr: build
./control-panel-dns >/tmp/witgui.log.stderr 2>&1
@@ -30,6 +34,9 @@ gocui: build
# ./control-panel-dns --gui gocui
./control-panel-dns --gui gocui >/tmp/witgui.log.stderr 2>&1
+nocui: reset build
+ ./control-panel-dns --gui nocui
+
check-git-clean:
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)