2020-06-01 13:51:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
|
|
VERSION=`cat VERSION`
|
|
|
|
|
|
|
|
|
|
# Clone new code
|
|
|
|
|
git clone https://github.com/ProtonMail/proton-bridge.git
|
|
|
|
|
cd proton-bridge
|
2021-01-07 11:41:05 +00:00
|
|
|
git checkout v$VERSION
|
2020-06-01 13:51:24 +00:00
|
|
|
|
|
|
|
|
# Build
|
2021-10-28 16:23:49 +00:00
|
|
|
if ! make build-nogui ; then
|
|
|
|
|
# If build fails it's probably because it is a 32bit
|
|
|
|
|
# system and there was a overflow error on the parser
|
|
|
|
|
# This is a workaround for this problem found at:
|
|
|
|
|
# https://github.com/antlr/antlr4/issues/2433#issuecomment-774514106
|
|
|
|
|
find $(go env GOPATH)/pkg/mod/github.com/\!proton\!mail/go-rfc5322*/ -type f -exec sed -i.bak 's/(1<</(int64(1)<</g' {} +
|
|
|
|
|
|
|
|
|
|
# Try again after implementing the workaround
|
|
|
|
|
make build-nogui
|
|
|
|
|
fi
|