File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,9 @@ set -exuo pipefail
5
5
SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
6
6
ROOT_DIR=" ${SCRIPT_DIR} /../.."
7
7
8
- # Collect changed files (excluding lines matching $EXCLUDE and the Podfile.lock)
9
- CHANGED_FILES=" $( git status --porcelain | grep -v example/ios/Podfile.lock | grep -v RustNostrNostrSdkReactNativeFramework.xcframework/Info.plist | awk ' {print $2}' ) "
8
+ # Collect changed files
9
+ # Exclude examples dir and RustNostrNostrSdkReactNativeFramework.xcframework/Info.plist
10
+ CHANGED_FILES=" $( git status --porcelain | grep -v ' example/' | grep -v RustNostrNostrSdkReactNativeFramework.xcframework/Info.plist | awk ' {print $2}' ) "
10
11
11
12
# If there are changes, show details and file contents
12
13
if [[ -n " $CHANGED_FILES " ]]; then
You can’t perform that action at this time.
0 commit comments