Skip to content

Commit

Permalink
get_resources.sh
Browse files Browse the repository at this point in the history
- && Added Vim resources
  • Loading branch information
Carlos Cabanero committed Jun 17, 2024
1 parent 56fa7ee commit bd22751
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
```

Expand Down
2 changes: 2 additions & 0 deletions Resources/vim/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
*
# Except this file
!.gitignore

# Download from: https://github.com/blinksh/vim/releases/download/v9.1.0187/runtime.zip
10 changes: 10 additions & 0 deletions get_resources.sh
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit bd22751

Please sign in to comment.