]> pd.if.org Git - zpackage/blobdiff - zpm-addtopackage
change addtopackage to use zpm stat
[zpackage] / zpm-addtopackage
index f096ea2eaef6c6eb2c2b0a2ec20c8d2c2720e0f2..19db69baf815782966b84c7239aa1b17f5317489 100755 (executable)
@@ -39,12 +39,12 @@ else
 fi
 
 for path in $*; do
-       mtime=$(stat -c '%Y' $path)
-       uid=$(stat -c '%u' $path)
-       gid=$(stat -c '%g' $path)
-       username=$(stat -c '%U' $path)
-       groupname=$(stat -c '%G' $path)
-       mode=$(stat -c '%a' $path)
+       mtime=$(zpm stat -t '%y' $path)
+       uid=$(zpm stat -t '%u' $path)
+       gid=$(zpm stat -t '%g' $path)
+       username=$(zpm stat -t '%U' $path)
+       groupname=$(zpm stat -t '%G' $path)
+       mode=$(zpm stat -t '%a' $path)
 
        # strip off leading slashes
        rpath=$(echo "$path" | sed -e 's|^/*||')