Skip to content

Commit c8aab05

Browse files
committed
also include SECURITY
1 parent 739065f commit c8aab05

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

configure-skeleton.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,16 @@ echo -e "Namespace : $VendorName\\$ClassName"
9090
echo -e "ClassName : $ClassName"
9191
echo -e "------"
9292

93-
files=$(grep -E -r -l -i ":author|:vendor|:package|:short|spatie|skeleton" --exclude-dir=vendor ./* ./.github/* | grep -v "$script_name")
93+
files=$(grep -E -r -l -i ":author|:vendor|:package|:short|spatie|[email protected]|vendor_slug|skeleton|Skeleton" --exclude-dir=vendor ./* ./.github/* | grep -v "$script_name")
9494

9595
echo "This script will replace the above values in all relevant files in the project directory."
9696

9797
if ! confirm "Modify files?"; then
9898
$safe_exit 1
9999
fi
100100

101-
grep -E -r -l -i ":author|:vendor|:package|VendorName|skeleton" --exclude-dir=vendor ./* ./.github/* \
101+
files_regex=":author|:vendor|:package|:short|spatie|[email protected]|vendor_slug|skeleton|Skeleton"
102+
grep -E -r -l -i "$files_regex" --exclude-dir=vendor ./* ./.github/* \
102103
| grep -v "$script_name" \
103104
| while read -r file ; do
104105
new_file="$file"

0 commit comments

Comments
 (0)