We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bb405 commit e366912Copy full SHA for e366912
tools/downloadBitcode.sh
@@ -3,7 +3,7 @@
3
set -euo pipefail
4
5
THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
6
-PACKAGE_VERSION=$(cat ${THIS_DIR}/../package.json \
+PACKAGE_VERSION=$(cat "${THIS_DIR}/../package.json" \
7
| grep "\"version\":" \
8
| head -1 \
9
| awk -F: '{ print $2 }' \
@@ -12,7 +12,7 @@ PACKAGE_VERSION=$(cat ${THIS_DIR}/../package.json \
12
WEBRTC_DL="https://github.com/react-native-webrtc/react-native-webrtc/releases/download/${PACKAGE_VERSION}/WebRTC.tar.xz"
13
14
15
-pushd ${THIS_DIR}/../apple
+pushd "${THIS_DIR}/../apple"
16
17
# Cleanup
18
rm -rf WebRTC.xcframework WebRTC.dSYMs
0 commit comments