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 @@ -90,15 +90,16 @@ echo -e "Namespace : $VendorName\\$ClassName"
90
90
echo -e " ClassName : $ClassName "
91
91
echo -e " ------"
92
92
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 " )
94
94
95
95
echo " This script will replace the above values in all relevant files in the project directory."
96
96
97
97
if ! confirm " Modify files?" ; then
98
98
$safe_exit 1
99
99
fi
100
100
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/* \
102
103
| grep -v " $script_name " \
103
104
| while read -r file ; do
104
105
new_file=" $file "
You can’t perform that action at this time.
0 commit comments