summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorgan Smith2023-06-04 19:25:39 -0400
committerArun Isaac2023-06-06 22:58:41 +0100
commit61836cac52fb047a6f376ed985f35615f21e530f (patch)
treea763f1ffc862a921e25fcf41f3912cd139d5fd23
parentd63ba6ff74145b8b9b5b4df73ab1b6bb971b30e9 (diff)
downloadtissue-61836cac52fb047a6f376ed985f35615f21e530f.tar.gz
tissue-61836cac52fb047a6f376ed985f35615f21e530f.tar.lz
tissue-61836cac52fb047a6f376ed985f35615f21e530f.zip
bin: Preserve 0th command line argument when using search alias.
There is literally no reason to do this as it's never used but it is technically more correct. * bin/tissue (main): Preserve 0th command line argument when using search alias. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
-rwxr-xr-xbin/tissue4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/tissue b/bin/tissue
index afad9e4..63f3ff7 100755
--- a/bin/tissue
+++ b/bin/tissue
@@ -548,5 +548,5 @@ Pull latest from upstream repositories.
(exit #f)))
args))))))
;; tissue is an alias for `tissue search'
- ((_)
- (main '("tissue" "search"))))))
+ ((tissue)
+ (main (list tissue "search"))))))