-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
53 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
|
||
c/bindings: | ||
- any: ['*Bindings*/*', '!*Bindings*Tests/*'] | ||
- any: ['*Bindings*/**/*', '!*Bindings*Tests/**/*'] | ||
|
||
c/common: | ||
- any: ['*Common*/*', '!*Common*Tests/*'] | ||
- any: ['*Common*/**/*', '!*Common*Tests/**/*'] | ||
|
||
c/connectivity: | ||
- any: ['*Connectivity*/*', '!*Connectivity*Tests/*'] | ||
- any: ['*Connectivity*/**/*', '!*Connectivity*Tests/**/*'] | ||
|
||
c/permissions: | ||
- any: ['*Permissions*/*', '!*Permissions*Tests/*'] | ||
- any: ['*Permissions*/**/*', '!*Permissions*Tests/**/*'] | ||
|
||
c/push-notifications: | ||
- any: ['*PushNotifications*/*', '!*PushNotifications*Tests/*'] | ||
- any: ['*PushNotifications*/**/*', '!*PushNotifications*Tests/**/*'] | ||
|
||
c/remote: | ||
- any: ['*Remote*/*', '!*Remote*Tests/*'] | ||
- any: ['*Remote*/**/*', '!*Remote*Tests/**/*'] | ||
|
||
c/wl: | ||
- any: ['*WhiteLabel*/*', '!*WhiteLabel*Tests/*', '!*WhiteLabel.Essentials*/*', '!*WhiteLabel.Forms*/*'] | ||
- any: ['*WhiteLabel*/**/*', '!*WhiteLabel*Tests/*', '!*WhiteLabel.Essentials*/*', '!*WhiteLabel.Forms*/**/*'] | ||
|
||
c/wl.essentials: | ||
- any: ['*WhiteLabel.Essentials*/*', '!*WhiteLabel.Essentials*Tests/*'] | ||
- any: ['*WhiteLabel.Essentials*/**/*', '!*WhiteLabel.Essentials*Tests/**/*'] | ||
|
||
c/wl.forms: | ||
- any: ['*WhiteLabel.Forms*/*', '!*WhiteLabel.Forms*Tests/*'] | ||
- any: ['*WhiteLabel.Forms*/**/*', '!*WhiteLabel.Forms*Tests/**/*'] | ||
|
||
c/playground: | ||
- samples/Playground*/* | ||
- samples/Playground*/**/* | ||
|
||
CI/CD: | ||
- .github/workflows/* | ||
- azure-pipelines/* | ||
- .github/workflows/**/* | ||
- azure-pipelines/**/* | ||
|
||
documentation: | ||
- documentation/* | ||
- documentation/**/* | ||
|
||
p/Android: | ||
- '*.Droid/*' | ||
- '*.Droid/**/*' | ||
|
||
p/iOS: | ||
- '*.iOS/*' | ||
- '*.iOS/**/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
# How to use: | ||
# tools/binobj-cleaner.sh <path> | ||
# path - root path and cleanup entry point | ||
# Example: | ||
# sh tools/binobj-cleaner.sh . | ||
|
||
if [ -z $1 ] ; then | ||
echo "Root path argument is required!" | ||
exit 1 | ||
else | ||
folders_to_remove=$(find $1 -type d \( -name bin -or -name obj \)) | ||
|
||
if [[ $folders_to_remove = "" ]]; then | ||
echo "No bin or obj folders to remove" | ||
else | ||
echo "Removing folders:" | ||
echo "$folders_to_remove" | ||
|
||
rm -rf $folders_to_remove | ||
fi | ||
fi |