summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2022-08-18 17:12:59 +0200
committerDavid Lönnhager <david.l@mullvad.net>2022-08-23 13:38:31 +0200
commitd7e882d96d0e04f6cd9e9bf78041a9d324414ffb (patch)
treeea1703f6aebf1009c3465fac708baa1feb20f60e
parenta7a9afca4025aabcb857fa771b6f4a3710f0959f (diff)
downloadmullvadvpn-d7e882d96d0e04f6cd9e9bf78041a9d324414ffb.tar.xz
mullvadvpn-d7e882d96d0e04f6cd9e9bf78041a9d324414ffb.zip
Generalize comment about multiple targets in build.sh
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 9f759ad4de..b857ecbd21 100755
--- a/build.sh
+++ b/build.sh
@@ -255,8 +255,8 @@ function build {
if [[ -n $current_target ]]; then
local cargo_output_dir="$CARGO_TARGET_DIR/$current_target/$RUST_BUILD_MODE"
- # To make it easier to package universal builds on macOS the binaries are located in a
- # directory with the name of the target triple.
+ # To make it easier to package multiple targets, the binaries are
+ # located in a directory with the name of the target triple.
local destination_dir="dist-assets/$current_target"
mkdir -p "$destination_dir"
else