From 549080c455f2fd447028edafadefd9b14155a3ea Mon Sep 17 00:00:00 2001 From: Ilan Cosman Date: Wed, 23 Sep 2020 13:56:08 -0700 Subject: [PATCH] Minor edits --- functions/_tide_sub_test.fish | 11 ++++------- functions/tide.fish | 8 ++------ 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/functions/_tide_sub_test.fish b/functions/_tide_sub_test.fish index 856fbd0..986b4d9 100644 --- a/functions/_tide_sub_test.fish +++ b/functions/_tide_sub_test.fish @@ -3,22 +3,19 @@ function _tide_sub_test if set -q _flag_help _tide_test_help - return - end - - if set -q _flag_install + return 0 + else if set -q _flag_install # Install fisher and spout for testing curl git.io/fisher --create-dirs -sLo $__fish_config_dir/functions/fisher.fish fisher add IlanCosman/spout - - return + return 0 end if not functions -q spout set -l b (set_color -o; or echo) set -l n (set_color normal; or echo) printf '%s\n' $b'spout'$n' must be installed to to run Tide\'s test suite. You can install it with'$b' tide test -i'$n - return + return 1 end set -lx TERM xterm # Necessary for testing purposes, ensures color codes are printed diff --git a/functions/tide.fish b/functions/tide.fish index 860f31e..9f53f47 100644 --- a/functions/tide.fish +++ b/functions/tide.fish @@ -5,14 +5,10 @@ function tide if set -q _flag_version printf '%s\n' "tide, version $_tide_version" return 0 - end - - if set -q _flag_help + else if set -q _flag_help _tide_help return 0 - end - - if functions --query _tide_sub_$subcommand + else if functions --query _tide_sub_$subcommand _tide_sub_$subcommand $argv[2..-1] else _tide_help