[meta] add zim_debug tool

Closes #51
This commit is contained in:
Matt Hamilton 2016-09-06 13:04:58 -07:00
parent d55939e528
commit d551b90050
2 changed files with 6 additions and 1 deletions

View File

@ -17,3 +17,5 @@ Usage
| build-cache | Rebuild the zim cache |
| remove | *experimental* Remove zim as best we can |
| reset | Reset zim to the latest commit |
| help | Print this usage message |
| debug | Invokes the trace-zim script which produces logs |

View File

@ -7,7 +7,8 @@ Actions:
| build-cache | Rebuild the zim cache |
| remove | *experimental* Remove zim as best we can |
| reset | Reset zim to the latest commit |
| help | Print this usage message |"
| help | Print this usage message |
| debug | Invokes the trace-zim script which produces logs |"
if (( ${#} != 1 )); then
print ${usage}
@ -32,6 +33,8 @@ case ${1} in
;;
reset) zsh ${tools}/zim_reset
;;
debug) zsh ${ZIM}/modules/debug/functions/trace-zim
;;
*) print ${usage}
;;
esac