summaryrefslogtreecommitdiff
path: root/pkgsize
diff options
context:
space:
mode:
authorSimone Rota <sip@crux.nu>2006-10-08 13:42:45 +0200
committerSimone Rota <sip@crux.nu>2006-10-08 13:42:45 +0200
commit01f373ce5693debe77927555afbd899ec72c03b4 (patch)
tree19821b2cad8a8fb0a22b2823392273c3c2d03df0 /pkgsize
parentf2be8dcbef8132de251bc63d6a88b7853c416b59 (diff)
downloadprt-utils-01f373ce5693debe77927555afbd899ec72c03b4.tar.gz
prt-utils-01f373ce5693debe77927555afbd899ec72c03b4.tar.xz
pkgsize: call /usr/bin/du to avoid aliasing
Diffstat (limited to 'pkgsize')
-rw-r--r--pkgsize2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgsize b/pkgsize
index ff2783c..4767d9e 100644
--- a/pkgsize
+++ b/pkgsize
@@ -102,7 +102,7 @@ do
file="/"$line
if [ -f $file ]; then
- filesize=`du $file`
+ filesize=`/usr/bin/du $file`
size=`echo $filesize | awk '{print $1}'`

Generated by cgit