summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2018-07-06 09:45:33 +0100
committerEmīls Piņķis <emils@mullvad.net>2018-07-06 09:45:33 +0100
commit1f9f024f43cd9ce67631eb4e50cb4e87c817ae55 (patch)
treea5d35d995398546b20e84e95954f677a4c6affca
parent6901311224f274620e723b26e20a418b34843d95 (diff)
parent94860e6ec30d7978e9339b34bcb661e035ae4901 (diff)
downloadmullvadvpn-1f9f024f43cd9ce67631eb4e50cb4e87c817ae55.tar.xz
mullvadvpn-1f9f024f43cd9ce67631eb4e50cb4e87c817ae55.zip
Merge branch 'fix-env-and-build-scripts'
-rwxr-xr-xbuild.sh1
-rw-r--r--env.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index d3fb28a721..9dea5fbedf 100755
--- a/build.sh
+++ b/build.sh
@@ -14,6 +14,7 @@ set -eu
SCRIPT_DIR="$( cd "$(dirname "$0")" ; pwd -P )"
RUSTC_VERSION=`rustc +stable --version`
PRODUCT_VERSION=$(node -p "require('./package.json').version" | sed -Ee 's/\.0//g')
+source env.sh
if [[ "${1:-""}" != "--dev-build" ]]; then
diff --git a/env.sh b/env.sh
index 1889f1ee71..1f1b5b10b2 100644
--- a/env.sh
+++ b/env.sh
@@ -1,6 +1,6 @@
# Sourcing this file should set up the environment to build the app
-SCRIPT_DIR="$( cd "$(dirname "$0")" ; pwd -P )"
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
case "$(uname -s)" in
Linux*)