Skip to content

Commit

Permalink
Updates regex for matching more license files (issue ryanoasis#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanoasis committed Apr 13, 2020
1 parent 303701c commit 5f748cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/scripts/gotta-patch-em-all-font-patcher!.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function copy_license {
while IFS= read -d $'\0' -r license_file ; do
# cp "$license_file" "$dest" # makes archiving multiple harder when we junk the paths for the archive
cp "$license_file" "$dest/complete"
done < <(find "$src" -iregex ".*license.*" -type f -print0)
done < <(find "$src" -iregex ".*\(licen[c,s]e\|ofl\).*" -type f -print0)
}

# Re-generate all the readmes
Expand Down

0 comments on commit 5f748cd

Please sign in to comment.