mirror of
https://github.com/shenxn/protonmail-bridge-docker.git
synced 2025-12-06 00:17:10 +00:00
14 lines
199 B
Bash
14 lines
199 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
VERSION=`cat VERSION`
|
|
|
|
# Clone new code
|
|
git clone https://github.com/ProtonMail/proton-bridge.git
|
|
cd proton-bridge
|
|
git checkout v$VERSION
|
|
|
|
# Build
|
|
make build-nogui vault-editor
|