summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <faern@faern.net>2022-05-31 14:27:47 +0200
committerLinus Färnstrand <linus@mullvad.net>2022-06-03 09:25:32 +0200
commitb2aef3dd925430d32fb06a3d3c4975d783ea23d2 (patch)
treeb5dfbb48488770b85eacddfaad191b387e70c5a4
parent172da289a8ea58effc427a5d3290427970e2719d (diff)
downloadmullvadvpn-b2aef3dd925430d32fb06a3d3c4975d783ea23d2.tar.xz
mullvadvpn-b2aef3dd925430d32fb06a3d3c4975d783ea23d2.zip
Change sh shebangs into bash shebangs since the scripts have bashisms
-rwxr-xr-xios/build-wireguard-go.sh3
-rwxr-xr-xios/prebuild.sh2
2 files changed, 3 insertions, 2 deletions
diff --git a/ios/build-wireguard-go.sh b/ios/build-wireguard-go.sh
index 11a3b9c728..1cb4e3efb4 100755
--- a/ios/build-wireguard-go.sh
+++ b/ios/build-wireguard-go.sh
@@ -1,4 +1,5 @@
-#!/bin/sh
+#!/usr/bin/env bash
+
# build-wireguard-go.sh
# A helper build script for WireGuardGoBridge via ExternalBuildSystem target in Xcode.
#
diff --git a/ios/prebuild.sh b/ios/prebuild.sh
index 903c5399d0..f85697e020 100755
--- a/ios/prebuild.sh
+++ b/ios/prebuild.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
if [ -z "$PROJECT_DIR" ]; then
echo "This script is intended to be executed by Xcode"