tools/make-payload.sh
changeset 488 8e8c25bf32f7
parent 487 ef261e04aa6b
child 489 d476c1718ce0
--- a/tools/make-payload.sh	Sat Nov 19 12:41:07 2011 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-set -e
-set -u
-
-usage() {
-    echo "$0 [directory]"
-    exit 1
-}
-
-if [ $# = 1 ]; then
-    cd "$1" || usage
-elif [ $# != 0 ]; then
-    usage
-fi
-
-gfind * -type d -printf 'dir path=%p\n'
-gfind * -type f -printf 'file path=%p\n'
-gfind * -type l -printf 'link path=%p target=%l\n'
-
-exit 0
-