aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <igor.pashev@nexenta.com>2013-04-08 16:01:32 +0400
committerIgor Pashev <igor.pashev@nexenta.com>2013-04-08 16:01:32 +0400
commit6c6321b2a39a957008aa41e79fe79f3545bb332f (patch)
tree6bc1612fcb934c627bdef2433c8a3ebbc5ba28f7
parentc57238437e68d86f13923d2ee881bc1ad0a7334a (diff)
downloadcibs-6c6321b2a39a957008aa41e79fe79f3545bb332f.tar.gz
Make sure files are found
-rwxr-xr-xscripts/make-payload2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make-payload b/scripts/make-payload
index ec88f0a..62c3e34 100755
--- a/scripts/make-payload
+++ b/scripts/make-payload
@@ -15,7 +15,7 @@ elif [ $# != 0 ]; then
fi
gfind * -type d -printf 'dir path=%p\n'
-gfind * -type f -printf 'file path=%p\n'
+gfind * -type f -printf "file $1/%p path=%p\n"
gfind * -type l -printf 'link path=%p target=%l\n'
exit 0