parent
d55939e528
commit
d551b90050
2 changed files with 6 additions and 1 deletions
|
@ -17,3 +17,5 @@ Usage
|
||||||
| build-cache | Rebuild the zim cache |
|
| build-cache | Rebuild the zim cache |
|
||||||
| remove | *experimental* Remove zim as best we can |
|
| remove | *experimental* Remove zim as best we can |
|
||||||
| reset | Reset zim to the latest commit |
|
| reset | Reset zim to the latest commit |
|
||||||
|
| help | Print this usage message |
|
||||||
|
| debug | Invokes the trace-zim script which produces logs |
|
||||||
|
|
|
@ -7,7 +7,8 @@ Actions:
|
||||||
| build-cache | Rebuild the zim cache |
|
| build-cache | Rebuild the zim cache |
|
||||||
| remove | *experimental* Remove zim as best we can |
|
| remove | *experimental* Remove zim as best we can |
|
||||||
| reset | Reset zim to the latest commit |
|
| 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
|
if (( ${#} != 1 )); then
|
||||||
print ${usage}
|
print ${usage}
|
||||||
|
@ -32,6 +33,8 @@ case ${1} in
|
||||||
;;
|
;;
|
||||||
reset) zsh ${tools}/zim_reset
|
reset) zsh ${tools}/zim_reset
|
||||||
;;
|
;;
|
||||||
|
debug) zsh ${ZIM}/modules/debug/functions/trace-zim
|
||||||
|
;;
|
||||||
*) print ${usage}
|
*) print ${usage}
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue