mirror of
https://github.com/jimeh/dotify.git
synced 2026-02-19 10:06:39 +00:00
Namespace global variables
This commit is contained in:
@@ -1,18 +1,18 @@
|
||||
dotify-main-dispatcher() {
|
||||
# Show help and exit if help arguments or command are given.
|
||||
if [ -n "$ARG_HELP" ] || [ "$COMMAND" == "help" ]; then
|
||||
if [ -n "$DOTIFY_ARG_HELP" ] || [ "$DOTIFY_COMMAND" == "help" ]; then
|
||||
dotify-command-help
|
||||
exit
|
||||
fi
|
||||
|
||||
# Show version info and exit if version arguments or command are given.
|
||||
if [ -n "$ARG_VERSION" ] || [ "$COMMAND" == "version" ]; then
|
||||
if [ -n "$DOTIFY_ARG_VERSION" ] || [ "$DOTIFY_COMMAND" == "version" ]; then
|
||||
dotify-command-help | head -1
|
||||
exit
|
||||
fi
|
||||
|
||||
# Deal with the commands.
|
||||
case "$COMMAND" in
|
||||
case "$DOTIFY_COMMAND" in
|
||||
"info" )
|
||||
dotify-command-info
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user