diff options
author | Arun Isaac | 2022-07-09 00:43:02 +0530 |
---|---|---|
committer | Arun Isaac | 2022-07-09 00:43:02 +0530 |
commit | 6ee93bd98198f30f45de93db51334367646df662 (patch) | |
tree | 15533f7ef803eb576741890948cfd29339d62a36 | |
parent | 3c39be96a00333e962fd7ceb3a50e475b68b2077 (diff) | |
download | tissue-6ee93bd98198f30f45de93db51334367646df662.tar.gz tissue-6ee93bd98198f30f45de93db51334367646df662.tar.lz tissue-6ee93bd98198f30f45de93db51334367646df662.zip |
bin: Deprecate tissue web subcommand.
* bin/tissue (tissue-web): Delete function.
(print-usage): Unlist web subcommand.
(main): Do not call tissue-web.
-rwxr-xr-x | bin/tissue | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -163,22 +163,6 @@ command-line arguments ARGS. (set-program-arguments (cons script args)) (load (canonicalize-path script)))))))) -(define tissue-web - (match-lambda* - (("--help") - (format #t "Usage: ~a web OUTPUT-DIRECTORY -Export the repository as a website to OUTPUT-DIRECTORY. - -" - (command-line-program))) - ((output-directory) - (let ((config (load-config))) - (parameterize ((%project-name (tissue-configuration-project config))) - (build-website (getcwd) - output-directory - (tissue-configuration-web-css config) - (tissue-configuration-web-files config))))))) - (define (listen->socket-address listen) "Convert LISTEN specification to a socket address." (cond @@ -301,7 +285,6 @@ COMMAND must be one of the sub-commands listed below: search search issues show show the text of an issue repl run a Guile script in a tissue environment - web export repository as website run-web run a web search service pull pull latest from upstream repositories index index files @@ -489,7 +472,6 @@ Pull latest from upstream repositories. ("search" tissue-search) ("show" tissue-show) ("repl" tissue-repl) - ("web" tissue-web) ("index" tissue-index) (invalid-command (format (current-error-port) "Invalid command `~a'~%~%" |