diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-05-16 23:30:19 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-05-17 14:02:19 +0200 |
| commit | 324598cb1a8db89229f35263a082ce2efa75dc73 (patch) | |
| tree | 15abac1653d845820451984f45ff53fbde8c54a7 | |
| parent | d69a00f7686978d69765d2677a6e53a7cd11bb74 (diff) | |
| download | mullvadvpn-324598cb1a8db89229f35263a082ce2efa75dc73.tar.xz mullvadvpn-324598cb1a8db89229f35263a082ce2efa75dc73.zip | |
Improve build.sh to package on Linux + use rustc 1.26
| -rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ set -eu -REQUIRED_RUSTC_VERSION="rustc 1.24.0 (4d90ac38c 2018-02-12)" +REQUIRED_RUSTC_VERSION="rustc 1.26.0 (a77568041 2018-05-07)" RUSTC_VERSION=`rustc +stable --version` if [[ $RUSTC_VERSION != $REQUIRED_RUSTC_VERSION ]]; then echo "You are running the wrong Rust compiler version." @@ -70,7 +70,7 @@ yarn install echo "Packing final release artifact..." case "$(uname -s)" in - #Linux*) yarn pack:linux;; + Linux*) yarn pack:linux;; Darwin*) yarn pack:mac;; esac |
