7 lines
157 B
Bash
7 lines
157 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if ! git clone https://github.com/zdharma-continuum/zinit.git ~/.zinit/bin; then
|
||
|
>&2 echo "clone zinit into ~/.zinit/bin failed"
|
||
|
exit 1
|
||
|
fi
|