diff options
author | Arun Isaac | 2022-07-01 01:12:02 +0530 |
---|---|---|
committer | Arun Isaac | 2022-07-01 01:12:02 +0530 |
commit | 33ddc67e439a697907566b07f63be19b0d304f7b (patch) | |
tree | 3d5a37e4d36fd38e05aff69206076c6db9b282c8 | |
parent | fd6668c9cb932efa125de4f5ce8b05ff70f6a7ea (diff) | |
download | tissue-33ddc67e439a697907566b07f63be19b0d304f7b.tar.gz tissue-33ddc67e439a697907566b07f63be19b0d304f7b.tar.lz tissue-33ddc67e439a697907566b07f63be19b0d304f7b.zip |
bin: Do not build index or parameterize for `tissue run-web'.
* bin/tissue (main): Do not build index or parameterize for `tissue
run-web'.
-rwxr-xr-x | bin/tissue | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -303,6 +303,8 @@ top-level of the git repository." (match-lambda* ((_ (or "-h" "--help")) (print-usage)) + ((_ "run-web" args ...) + (apply tissue-run-web args)) ((_ command args ...) (guard (c ((issue-file-not-found-error? c) (display (string-append "No such file or directory: " @@ -348,7 +350,6 @@ top-level of the git repository." ("show" tissue-show) ("repl" tissue-repl) ("web" tissue-web) - ("run-web" tissue-run-web) ("index" tissue-index) (invalid-command (format (current-error-port) "Invalid command `~a'~%~%" |