mirror of
https://gh.llkk.cc/https://github.com/WeblateOrg/language-data.git
synced 2025-10-03 15:01:09 +08:00
13 lines
268 B
Bash
Executable file
13 lines
268 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
REGX='^\("POT-Creation-Date: [0-9 +:-]*\)'
|
|
|
|
# Grab date from other branch
|
|
REPL=$(sed -n "s/$REGX.*/\\1/p" "$1")
|
|
|
|
# Push it into other files
|
|
sed -i -e "s/$REGX/$REPL/" "$2"
|