diff options
Diffstat (limited to 'main.sh')
-rw-r--r-- | main.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,8 @@ function main systr_checkout "$@" elif [[ "$cmd" == "init" ]]; then systr_init "$@" + elif [[ "$cmd" == "clone" ]]; then + systr_clone "$@" else echo "Fatal: not in a worktree" >&2 exit 1 @@ -39,6 +41,8 @@ function main systr_status "$@" elif [[ "$cmd" == "init" ]]; then systr_init "$@" + elif [[ "$cmd" == "clone" ]]; then + systr_clone "$@" elif [[ "$cmd" == "checkout" ]]; then systr_checkout "$@" elif [[ "$cmd" == "commit" ]]; then |