Skip to content

Commit

Permalink
Deprecate EXECUTE function.
Browse files Browse the repository at this point in the history
  • Loading branch information
takagi committed Apr 4, 2016
1 parent a6e504b commit 8952cbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -240,6 +240,8 @@ As `ssh` function above, `*ssh-host*`, `*ssh-user*` and `*ssh-identity*` should

EXECUTE target

**DEPRECATED**

Executes a task specified with `target` as a string within another. The name of the target task is resolved as well as `task` macro's dependency list in both relative and absolute manner.

(task "hello" ("hello.c")
Expand Down
1 change: 1 addition & 0 deletions src/lake.lisp
Expand Up @@ -394,6 +394,7 @@
;; Execute

(defun execute (task-name)
(warn "EXECUTE function is deprecated.")
(%execute task-name *namespace* *tasks*))

(defun %execute (task-name namespace tasks)
Expand Down

0 comments on commit 8952cbb

Please sign in to comment.