Skip to content
This repository was archived by the owner on Sep 2, 2021. It is now read-only.

Commit c7f11bc

Browse files
committed
remove make step from setup
1 parent 57fb18b commit c7f11bc

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

scripts/setup_linux_build.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
3+
mkdir deps
4+
zipname="cef_binary_3.1271.889_linux"
5+
6+
if [ ! -f deps/cef.zip ]; then
7+
wget -O deps/cef.zip https://github.com/downloads/pritambaral/brackets-shell/$zipname-32.zip
8+
fi
9+
10+
unzip deps/cef.zip -d deps
11+
mv deps/$zipname deps/cef
12+
13+
gyp --depth .

0 commit comments

Comments
 (0)