diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-03-29 21:30:40 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-03-29 21:30:40 -0500 |
commit | 970d2e942eb29bf78fe89895ace4d781970b6e94 (patch) | |
tree | 663b8e3ece27a20e13b406550cf29ae8e20b5ba6 /scripts | |
parent | 9a9f1e00da3150150e57fc949b5c45b93afeefe8 (diff) |
repo-add leaves .PKGINFO in the current directory
* Misuse of 'tar xf', which should be 'tar tf'
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/repo-add | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/repo-add b/scripts/repo-add index d6e2c5ae..dc280161 100755 --- a/scripts/repo-add +++ b/scripts/repo-add @@ -246,7 +246,7 @@ if [ $# -gt 1 ]; then fi else if [ -f "$arg" ]; then - if ! tar xf "$arg" .PKGINFO 2>&1 >/dev/null; then + if ! tar tf "$arg" .PKGINFO 2>&1 >/dev/null; then echo "error: '$arg' is not a package file, skipping" else echo ":: adding package '$arg'" |