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
55SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
66ROOT_DIR=" ${SCRIPT_DIR} /../.."
77
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}' ) "
1011
1112# If there are changes, show details and file contents
1213if [[ -n " $CHANGED_FILES " ]]; then
You can’t perform that action at this time.
0 commit comments