We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e612d8 commit b709bb5Copy full SHA for b709bb5
Makefile
@@ -24,6 +24,8 @@
24
# run help if no target specified
25
.DEFAULT_GOAL := help
26
27
+OUTDATED_FILE := outdated-$(shell date +%y-%m-%d-%T).org
28
+
29
# Column the target description is printed from
30
HELP-DESCRIPTION-SPACING := 24
31
@@ -49,7 +51,7 @@ repl: ## Run Clojure REPL with rich terminal UI (Rebel Readline)
49
51
50
52
outdated: ## Check deps.edn & GitHub actions for new versions
53
$(info --------- Search for outdated libraries ---------)
- clojure -T:search/outdated > outdated-$(date +"%y-%m-%d-%T").org
54
+ - clojure -T:search/outdated > $(OUTDATED_FILE)
55
56
# deps: deps.edn ## Prepare dependencies for test and dist targets
57
# $(info --------- Download test and service libraries ---------)
0 commit comments