From 1080a6a4ec1ba1fbfb658226763424217782264e Mon Sep 17 00:00:00 2001 From: thebitstick Date: Fri, 22 May 2020 00:53:21 -0500 Subject: [PATCH] Removed version function, never worked anyways --- tsubasa.fish | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tsubasa.fish b/tsubasa.fish index 6ae7c77..cd4c7f8 100755 --- a/tsubasa.fish +++ b/tsubasa.fish @@ -21,7 +21,6 @@ function usage echo "" echo "Help Options:" echo " -h,--help Show help options" - echo " -V,--version Print version information and exit" echo " -v,--verbose Print debug logging" echo "" echo "Application Commands:" @@ -32,10 +31,6 @@ function usage echo "" end -function version - echo "$basename "(zenity --version) -end - if ! command -q toot echo "$basename: toot not found in PATH. needed to send status updates" exit 1 @@ -60,9 +55,6 @@ for item in $argv case "-h" "--help" usage exit 0 - case "-V" "--version" - version - exit 0 case "-v" "--verbose" set verbosity 1 case '*'