aboutsummaryrefslogtreecommitdiffhomepage
path: root/markup/pod/live-manual/media/text/bin/update-version.sh
diff options
context:
space:
mode:
Diffstat (limited to 'markup/pod/live-manual/media/text/bin/update-version.sh')
-rwxr-xr-xmarkup/pod/live-manual/media/text/bin/update-version.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/markup/pod/live-manual/media/text/bin/update-version.sh b/markup/pod/live-manual/media/text/bin/update-version.sh
deleted file mode 100755
index 3a9d2e4..0000000
--- a/markup/pod/live-manual/media/text/bin/update-version.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-set -e
-
-VERSION="$(cat ../VERSION)"
-
-DAY="$(LC_ALL=C date +%d)"
-MONTH="$(LC_ALL=C date +%m)"
-YEAR="$(LC_ALL=C date +%Y)"
-
-echo "Updating version information..."
-sed -i -e "s|^ :published:.*$| :published: ${YEAR}-${MONTH}-${DAY}|" \
- -e "s|(C) 2006-.*|(C) 2006-${YEAR} Live Systems Project|" \
-en/live-manual.ssm
-
-# European date format
-for _LANGUAGE in ca de es fr it pl ro
-do
- if [ -e po/${_LANGUAGE}/live-manual.ssm.po ]
- then
- sed -i -e "s|:published: .*.${YEAR}|:published: ${DAY}.${MONTH}.${YEAR}|" \
- po/${_LANGUAGE}/live-manual.ssm.po
- fi
-done
-
-# Brazilian date format
-if [ -e po/pt_BR/live-manual.ssm.po ]
-then
- sed -i -e "s|:published: .*-${YEAR}|:published: ${DAY}-${MONTH}-${YEAR}|" \
- po/pt_BR/live-manual.ssm.po
-fi