diff options
author | Vincent Petithory <vincent.petithory@gmail.com> | 2013-09-24 20:41:01 +0200 |
---|---|---|
committer | Vincent Petithory <vincent.petithory@gmail.com> | 2013-09-24 20:41:01 +0200 |
commit | 7b3fc1dbc951f8e49b06c95c6ed44f943ff4c6b3 (patch) | |
tree | 9d4a33b3f429f88cccf719790b8be0bfe4cb3fbf /client/client-updates/src/client-updates-news | |
parent | 4271bbbcf141d474048ac3b5e369b4ecbfb0aac6 (diff) | |
download | tools-7b3fc1dbc951f8e49b06c95c6ed44f943ff4c6b3.tar.gz tools-7b3fc1dbc951f8e49b06c95c6ed44f943ff4c6b3.tar.bz2 tools-7b3fc1dbc951f8e49b06c95c6ed44f943ff4c6b3.tar.xz tools-7b3fc1dbc951f8e49b06c95c6ed44f943ff4c6b3.zip |
Remove deprecated client-updates
Diffstat (limited to 'client/client-updates/src/client-updates-news')
-rwxr-xr-x | client/client-updates/src/client-updates-news | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/client/client-updates/src/client-updates-news b/client/client-updates/src/client-updates-news deleted file mode 100755 index bc78e4e..0000000 --- a/client/client-updates/src/client-updates-news +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -# config -SRC=$(dirname $(readlink -f "$0")) - -. ${SRC}/client-updates.conf - -# Edit news.txt -nano "${UPDATES_DIR}"/release/news.txt - -# Commit if changed -cd "${UPDATES_DIR}" -git status | grep -q 'news.txt' && { git add release/news.txt; git commit -m 'Updating news.txt' > /dev/null; } -cd - > /dev/null |