File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ We made a ton easier to build and install Blink yourself on your iOS devices thr
81
81
1 . Run the following command:
82
82
``` bash
83
83
git clone --recursive https://github.com/blinksh/blink.git && \
84
- cd blink && ./get_frameworks.sh && \
84
+ cd blink && ./get_frameworks.sh && ./get_resources.sh && \
85
85
rm -rf Blink.xcodeproj/project.xcworkspace/xcshareddata/
86
86
```
87
87
Original file line number Diff line number Diff line change 2
2
*
3
3
# Except this file
4
4
! .gitignore
5
+
6
+ # Download from: https://github.com/blinksh/vim/releases/download/v9.1.0187/runtime.zip
Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments