summaryrefslogtreecommitdiff
path: root/client/client-updates/src/client-updates-inspect
diff options
context:
space:
mode:
authorVincent Petithory <vincent.petithory@gmail.com>2013-09-24 20:41:01 +0200
committerVincent Petithory <vincent.petithory@gmail.com>2013-09-24 20:41:01 +0200
commit7b3fc1dbc951f8e49b06c95c6ed44f943ff4c6b3 (patch)
tree9d4a33b3f429f88cccf719790b8be0bfe4cb3fbf /client/client-updates/src/client-updates-inspect
parent4271bbbcf141d474048ac3b5e369b4ecbfb0aac6 (diff)
downloadtools-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-inspect')
-rwxr-xr-xclient/client-updates/src/client-updates-inspect20
1 files changed, 0 insertions, 20 deletions
diff --git a/client/client-updates/src/client-updates-inspect b/client/client-updates/src/client-updates-inspect
deleted file mode 100755
index 03ae2d6..0000000
--- a/client/client-updates/src/client-updates-inspect
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-#config
-SRC=$(dirname $(readlink -f "$0"))
-
-. ${SRC}/client-updates.conf
-
-DIRECTORY="${UPDATES_DIR}/release"
-listing=$(mktemp)
-IFS='
-'
-for f in $(tac $DIRECTORY/resources2.txt); do
- file=$(awk '{ print $1; }' <<< $f)
- unzip -l "$DIRECTORY/$file" >> $listing
-done
-
-if [ -f "$listing" ]; then
- less "$listing"
-fi
-rm -f "$listing"