summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2018-05-16 23:30:19 +0200
committerLinus Färnstrand <linus@mullvad.net>2018-05-17 14:02:19 +0200
commit324598cb1a8db89229f35263a082ce2efa75dc73 (patch)
tree15abac1653d845820451984f45ff53fbde8c54a7
parentd69a00f7686978d69765d2677a6e53a7cd11bb74 (diff)
downloadmullvadvpn-324598cb1a8db89229f35263a082ce2efa75dc73.tar.xz
mullvadvpn-324598cb1a8db89229f35263a082ce2efa75dc73.zip
Improve build.sh to package on Linux + use rustc 1.26
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index cffbdb5afe..5f967f035a 100755
--- a/build.sh
+++ b/build.sh
@@ -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