Skip to content

Commit 6a8ab84

Browse files
author
Carlos Cabanero
committed
get_resources.sh
- && Added Vim resources
1 parent decef95 commit 6a8ab84

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ We made a ton easier to build and install Blink yourself on your iOS devices thr
8181
1. Run the following command:
8282
```bash
8383
git clone --recursive https://github.com/blinksh/blink.git && \
84-
cd blink && ./get_frameworks.sh && \
84+
cd blink && ./get_frameworks.sh && ./get_resources.sh && \
8585
rm -rf Blink.xcodeproj/project.xcworkspace/xcshareddata/
8686
```
8787

Resources/vim/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
*
33
# Except this file
44
!.gitignore
5+
6+
# Download from: https://github.com/blinksh/vim/releases/download/v9.1.0187/runtime.zip

get_resources.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -e
3+
4+
(
5+
cd Resources/vim
6+
curl -L https://github.com/blinksh/vim/releases/download/v9.1.0187/runtime.zip > runtime.zip
7+
unzip runtime.zip && mv runtime/* ./ && rm runtime.zip
8+
)
9+
10+
echo "done"

0 commit comments

Comments
 (0)