diff options
Diffstat (limited to 'curl-install.sh')
-rwxr-xr-x | curl-install.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/curl-install.sh b/curl-install.sh new file mode 100755 index 0000000..62b77ed --- /dev/null +++ b/curl-install.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +ORIGIN=https://git.microjoe.org/MicroJoe/bepo.vim +DESTDIR=~/.vim/pack/microjoe/start/ +REPODIR="$DESTDIR/bepo.vim" + +mkdir -p "$DESTDIR" +git clone "$ORIGIN" "$REPODIR" |