mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
In v3, 'doom run' will have a different purpose (for launching project or CI/CD tasks), so it now emits a warning that it's moved to a new 'doom emacs' command. I refrain from updating documentation because a rewrite of our docs will be coming up soon.
27 lines
339 B
EmacsLisp
27 lines
339 B
EmacsLisp
;;; lisp/cli/run.el --- launching project and CI/CD tasks -*- lexical-binding: t; -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
;;
|
|
;;; Variables
|
|
|
|
;; None yet!
|
|
|
|
|
|
;;
|
|
;;; Commands
|
|
|
|
;; (defcli! run
|
|
;; (&rest tasks)
|
|
;; "Run a project task or CI/CD pipeline."
|
|
;; :benchmark nil
|
|
;; )
|
|
|
|
|
|
;;
|
|
;;; Helpers
|
|
|
|
|
|
(provide 'doom-cli '(run))
|
|
;;; run.el ends here
|