Skip to content

Commit 16750a6

Browse files
committed
Bump electron version
1 parent 09b1676 commit 16750a6

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

make_openbazaar.sh

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
##
55
## Usage
66
## ./make_openbazaar.sh OS
7-
##
7+
##
88
## OS supported:
99
## win32 win64 linux osx
1010
##
1111

1212

13-
ELECTRONVER=0.37.6
13+
ELECTRONVER=0.37.8
1414
NODEJSVER=5.1.1
1515
PYTHONVER=2.7.11
1616
UPXVER=391
@@ -110,19 +110,19 @@ case $OS in win32*)
110110
echo 'Building Server Binary...'
111111
cd OpenBazaar-Server
112112
py.exe -2.7-32 -m pip install virtualenv
113-
113+
114114
if [ -d env-$OS ]; then
115115
rm -rf env-$OS
116116
fi
117117

118118
if [ -d dist ]; then
119119
rm -rf dist
120120
fi
121-
121+
122122
if [ -d build ]; then
123123
rm -rf build
124124
fi
125-
125+
126126
py.exe -2.7-32 -m virtualenv env-$OS
127127
. env-$OS/scripts/activate
128128
pip install pyinstaller==3.1.1
@@ -191,33 +191,33 @@ case $OS in win32*)
191191

192192
echo 'Building Server Binary...'
193193
cd OpenBazaar-Server
194-
194+
195195
if [ -d env-$OS ]; then
196196
rm -rf env-$OS
197197
fi
198198

199199
if [ -d dist ]; then
200200
rm -rf dist
201201
fi
202-
202+
203203
if [ -d build ]; then
204204
rm -rf build
205205
fi
206-
206+
207207
py.exe -2.7-x64 -m pip install virtualenv
208-
208+
209209
py.exe -2.7-x64 -m virtualenv env-$OS
210210
. env-$OS/scripts/activate
211211
pip install pyinstaller==3.1.1
212212
pip install setuptools==19.2 --upgrade
213213
pip install https://openbazaar.org/downloads/miniupnpc-1.9-cp27-none-win_amd64.whl
214214
pip install https://openbazaar.org/downloads/PyNaCl-0.3.0-cp27-none-win_amd64.whl
215-
215+
216216
pip install -r requirements.txt
217-
218-
217+
218+
219219
rm -rf dist build
220-
220+
221221
pyinstaller --clean -i ../windows/icon.ico ../openbazaard.win.spec --win-private-assemblies --noconfirm
222222
cp -rf dist/openbazaard/* ../build-$OS/OpenBazaar-Server
223223
cp ob.cfg ../build-$OS/OpenBazaar-Server
@@ -258,7 +258,7 @@ case $OS in win32*)
258258

259259
cd ../../../../
260260
mv build-$OS/OpenBazaarSetup.exe "build-$OS/OpenBazaar-${PACKAGE_VERSION}_Setup_x64.exe"
261-
261+
262262
echo "Do not forget to sign the release before distributing..."
263263
echo "signtool sign /t http://timestamp.digicert.com /a [filename]"
264264
;;
@@ -488,4 +488,3 @@ case $OS in win32*)
488488
echo "Build done in build-$OS"
489489

490490
esac
491-

0 commit comments

Comments
 (0)