mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-10 00:42:29 -06:00
16 lines
418 B
Bash
Executable File
16 lines
418 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Updates the list of third-party software licenses displayed in app settings.
|
|
|
|
set -euo pipefail
|
|
|
|
if [ "$CONFIGURATION" = "Debug" ]; then
|
|
# Add the homebrew path for Apple silicon since it's not in Xcode's path.
|
|
if [[ ! "$PATH" =~ "/opt/homebrew/bin" ]]; then
|
|
PATH="/opt/homebrew/bin:$PATH"
|
|
fi
|
|
|
|
mint run LicensePlist license-plist \
|
|
--config-path .license-plist-bwa.yml
|
|
fi
|