2020-06-01 06:51:24 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
|
|
VERSION=`cat VERSION`
|
|
|
|
|
|
|
|
|
|
# Clone new code
|
|
|
|
|
git clone https://github.com/ProtonMail/proton-bridge.git
|
|
|
|
|
cd proton-bridge
|
2020-06-01 07:51:40 -07:00
|
|
|
git checkout v$VERSION
|
2020-06-01 06:51:24 -07:00
|
|
|
|
|
|
|
|
# Enable debug log
|
|
|
|
|
sed -i "s/build desktop/-debug build desktop/" Makefile
|
|
|
|
|
|
|
|
|
|
# Build
|
|
|
|
|
make build-nogui
|