You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "$file"=~ ^src/(CONST|languages|setup|stories|styles|types)/ ]];then
55
-
echo"Skipping excluded directory: $file"
55
+
echo"Skipping excluded directory: \"$file\""
56
56
continue
57
57
fi
58
58
59
59
# Exclude specific files in src root
60
-
filename=$(basename "$file")
60
+
filename="$(basename "$file")"
61
61
if [[ "$filename"=~ ^(App\.tsx|CONFIG\.ts|Expensify\.tsx|HybridAppHandler\.tsx|NAICS\.ts|NAVIGATORS\.ts|ONYXKEYS\.ts|ROUTES\.ts|SCREENS\.ts|SplashScreenStateContext\.tsx|TIMEZONES\.ts)$ ]];then
0 commit comments