summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-07-09 00:43:02 +0530
committerArun Isaac2022-07-09 00:43:02 +0530
commit6ee93bd98198f30f45de93db51334367646df662 (patch)
tree15533f7ef803eb576741890948cfd29339d62a36
parent3c39be96a00333e962fd7ceb3a50e475b68b2077 (diff)
downloadtissue-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-xbin/tissue18
1 files changed, 0 insertions, 18 deletions
diff --git a/bin/tissue b/bin/tissue
index 4d91ba9..f6fface 100755
--- a/bin/tissue
+++ b/bin/tissue
@@ -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'~%~%"