Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Apr 9, 2024
1 parent d3b1aec commit 050ef46
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion abcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

NAME = "abcli"

VERSION = "7.2973.1"
VERSION = "7.2977.1"

DESCRIPTION = "🚀 a language to speak AI."

Expand Down
2 changes: 2 additions & 0 deletions bash/modules/abcli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ function abcli() {
local function_name=abcli_$task
if [[ $(type -t $function_name) == "function" ]]; then
$function_name "${@:2}"
elif [[ "$task" == "version" ]]; then
echo $abcli_fullname
else
abcli_log_error "-abcli: $task: command not found."
return 1
Expand Down
2 changes: 2 additions & 0 deletions bash/plugins/alias.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,6 @@ alias @timestamp=abcli_string_timestamp

alias @upload=abcli_upload

alias @version="abcli version"

alias @watch=abcli_watch
2 changes: 1 addition & 1 deletion bash/plugins/eval.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function abcli_eval() {

if [ $(abcli_option_int "$options" help 0) == 1 ]; then
local options="dryrun,~log,path=<path>"
abcli_show_usage "abcli eval$ABCUL[$options]$ABCUL<command-line>" \
abcli_show_usage "@eval$ABCUL[$options]$ABCUL<command-line>" \
"eval <command-line>."
return
fi
Expand Down

0 comments on commit 050ef46

Please sign in to comment.