Debugging

This commit is contained in:
Carlos Salguero
2019-09-07 14:39:18 -03:00
parent e99671aef8
commit b5ee6cfc9f
2 changed files with 4 additions and 1 deletions

View File

@@ -183,9 +183,10 @@ update_version() {
}
update_copyright_year() {
echo -n "Updating copyright year in tools... "
echo -n "Updating copyright year in tools to $YEAR ... "
cd $BRANCH/bin
for tool_file in *; do
echo "Updating $tool_file"
local copyright="$(grep "[0-9] Percona LLC and/or its affiliates" $tool_file)"
local new_copyright="$(../util/new-copyright-year "$YEAR" "$copyright")"
if [ $? -ne 0 ]; then