mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-24 05:37:45 +08:00
Fix shellcheck complaints about provisioning scripts
Also adds executable attributes to shell scripts that were missing it. Change-Id: Id52ef495147fdbfb5cb1a1f711fac530e0e85f3b Reviewed-by: Jukka Jokiniva <jukka.jokiniva@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
This commit is contained in:
@@ -7,7 +7,7 @@ set -ex
|
||||
|
||||
source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh"
|
||||
brew install libusb
|
||||
read -r -a arr <<< $(brew list --versions libusb)
|
||||
read -r -a arr <<< "$(brew list --versions libusb)"
|
||||
version=${arr[1]}
|
||||
echo "libusb = $version" >> ~/versions.txt
|
||||
|
||||
@@ -21,15 +21,15 @@ case $(sw_vers -productVersion) in
|
||||
14*) codename=sonoma;;
|
||||
esac
|
||||
|
||||
brew fetch --bottle-tag=arm64_${codename} libusb
|
||||
brew fetch --bottle-tag=${codename} libusb
|
||||
tar xf $(brew --cache --bottle-tag=arm64_${codename} libusb) -C /tmp/arm64/
|
||||
tar xf $(brew --cache --bottle-tag=${codename} libusb) -C /tmp/amd64
|
||||
for f in /tmp/arm64/libusb/$version/lib/* ; do
|
||||
if lipo -info $f >/dev/null 2>&1; then
|
||||
file=$(basename $f)
|
||||
lipo -create -output $(brew --cellar)/libusb/$version/lib/$file \
|
||||
/tmp/arm64/libusb/$version/lib/$file \
|
||||
/tmp/amd64/libusb/$version/lib/$file
|
||||
brew fetch --bottle-tag=arm64_"${codename}" libusb
|
||||
brew fetch --bottle-tag="${codename}" libusb
|
||||
tar xf "$(brew --cache --bottle-tag=arm64_"${codename}" libusb)" -C /tmp/arm64/
|
||||
tar xf "$(brew --cache --bottle-tag="${codename}" libusb)" -C /tmp/amd64
|
||||
for f in /tmp/arm64/libusb/"$version"/lib/* ; do
|
||||
if lipo -info "$f" >/dev/null 2>&1; then
|
||||
file="$(basename "$f")"
|
||||
lipo -create -output "$(brew --cellar)/libusb/$version/lib/$file" \
|
||||
"/tmp/arm64/libusb/$version/lib/$file" \
|
||||
"/tmp/amd64/libusb/$version/lib/$file"
|
||||
fi
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user