1
0
Fork 0
mirror of synced 2024-06-15 13:31:09 -04:00

Merge pull request #1 from chetgurevitch/allow-arbitrary-location

meta: use ZIM_HOME
This commit is contained in:
Thiago Kenji Okada 2017-09-04 10:08:58 -03:00 committed by GitHub
commit f05017da20

View file

@ -16,7 +16,7 @@ if (( ${#} != 1 )); then
fi fi
local tools local tools
tools="${ZIM}/tools" tools="${ZIM_HOME}/tools"
case ${1} in case ${1} in
update) zsh ${tools}/zim_update update) zsh ${tools}/zim_update
@ -33,7 +33,7 @@ case ${1} in
;; ;;
reset) zsh ${tools}/zim_reset reset) zsh ${tools}/zim_reset
;; ;;
debug) zsh ${ZIM}/modules/debug/functions/trace-zim debug) zsh ${ZIM_HOME}/modules/debug/functions/trace-zim
;; ;;
*) print ${usage} *) print ${usage}
;; ;;