summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCarlos Alexandro Becker <caarlos0@users.noreply.github.com>2024-07-03 12:11:29 -0300
committerGitHub <noreply@github.com>2024-07-03 12:11:29 -0300
commitfce3edf7dbaea4c3bb64e19c68e230474b27a305 (patch)
tree1df357e68e2ec0bd577f75528689f8a8405bbcee /Makefile
parentd2e7742a6abb52866c69d71e430e3eee82785148 (diff)
feat!: cleanup and updated (#619)
* feat!: cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6d80864..4985f56 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,6 @@
.PHONY: default clean glow run log
-LOGFILE := debug.log
-
default: glow
clean:
@@ -13,8 +11,7 @@ glow:
go build
run: clean glow
- GLOW_LOGFILE=$(LOGFILE) ./glow
+ ./glow
log:
- > $(LOGFILE)
- tail -f $(LOGFILE)
+ tail -f ~/.cache/glow/glow.log