Skip to content

Commit 862b38b

Browse files
committed
Fix regex
1 parent c8309ee commit 862b38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
# Each file in this directory matches a file in the Analytics iOS SDK.
110110
cp -vf "${podtmp}/${header_dir}/${ios_header}" .
111111
# If the file doesn't have a Google copyright, add one.
112-
if ! grep -q '^// Copyright ' "${ios_header}"; then
112+
if ! grep -q "^// Copyright [0-9]* Google LLC" "${ios_header}"; then
113113
copyright_line="// Copyright $(date +%Y) Google LLC\n"
114114
else
115115
copyright_line=

0 commit comments

Comments
 (0)