diff --git a/README.md b/README.md index cee2d2ea3..cd02ae9ba 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ We made a ton easier to build and install Blink yourself on your iOS devices thr 1. Run the following command: ```bash git clone --recursive https://github.com/blinksh/blink.git && \ - cd blink && ./get_frameworks.sh && \ + cd blink && ./get_frameworks.sh && ./get_resources.sh && \ rm -rf Blink.xcodeproj/project.xcworkspace/xcshareddata/ ``` diff --git a/Resources/vim/.gitignore b/Resources/vim/.gitignore index 989809677..9f3793a0c 100644 --- a/Resources/vim/.gitignore +++ b/Resources/vim/.gitignore @@ -2,3 +2,5 @@ * # Except this file !.gitignore + +# Download from: https://github.com/blinksh/vim/releases/download/v9.1.0187/runtime.zip \ No newline at end of file diff --git a/get_resources.sh b/get_resources.sh new file mode 100644 index 000000000..e67440297 --- /dev/null +++ b/get_resources.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -e + +( + cd Resources/vim + curl -L https://github.com/blinksh/vim/releases/download/v9.1.0187/runtime.zip > runtime.zip + unzip runtime.zip && mv runtime/* ./ && rm runtime.zip +) + +echo "done"