Skip to content

Commit 098c8c2

Browse files
committed
Exclude specific Info.plist from dirty file checks
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent 2a5d403 commit 098c8c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/scripts/check-dirty.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
66
ROOT_DIR="${SCRIPT_DIR}/../.."
77

88
# Collect changed files (excluding lines matching $EXCLUDE and the Podfile.lock)
9-
CHANGED_FILES="$(git status --porcelain | grep -v example/ios/Podfile.lock | awk '{print $2}')"
9+
CHANGED_FILES="$(git status --porcelain | grep -v example/ios/Podfile.lock | grep -v RustNostrNostrSdkReactNativeFramework.xcframework/Info.plist | awk '{print $2}')"
1010

1111
# If there are changes, show details and file contents
1212
if [[ -n "$CHANGED_FILES" ]]; then

0 commit comments

Comments
 (0)