diff options
author | Carlos Alexandro Becker <caarlos0@users.noreply.github.com> | 2024-07-03 12:11:29 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 12:11:29 -0300 |
commit | fce3edf7dbaea4c3bb64e19c68e230474b27a305 (patch) | |
tree | 1df357e68e2ec0bd577f75528689f8a8405bbcee /Makefile | |
parent | d2e7742a6abb52866c69d71e430e3eee82785148 (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-- | Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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 |